function showPicture(id) {
	
	for(i=0; i<6; i++) {
		document.getElementById("flash_pict_"+i).style.display = "none";
		document.getElementById("flash_header_"+i).style.display = "none";
		document.getElementById("flash_header2_"+i).style.background = "url(/img2/belediye_yeni/norm.gif) repeat-x left top";
	}
	document.getElementById("flash_pict_"+id).style.display = "block";
	document.getElementById("flash_header_"+id).style.display = "block";
	document.getElementById("flash_header2_"+id).style.background = "url(/img2/belediye_yeni/current.gif) repeat-x left top";
}


function showShare(id) {
	for(i=0; i<8; i++) {
		document.getElementById("shareDetay_"+i).style.display = "none";
	}
	document.getElementById("shareDetay_"+id).style.display = "block";
}

function FlashSlide() {
	
	this.count    = 0;
	this.StepCount = 60;
	this.cont  = 1;
	this.index1 = null;
	this.index2 = null;
	this.index3 = null;
	this.index4 = null;
	this.index5 = null;
	this.index6 = null;
	this.showPicture1 = showPicture1;
	this.showPicture2 = showPicture2;
	this.showPicture3 = showPicture3;
	this.showPicture4 = showPicture4;
	this.showPicture5 = showPicture5;
	this.showPicture6 = showPicture6;
	this.checkCount   = checkCount;
	
	function showPicture6() {
		
		this.count++;
		
		for(i=0; i<6; i++) {
			document.getElementById("flash_pict_"+i).style.display = "none";
			document.getElementById("flash_header_"+i).style.display = "none";
			document.getElementById("flash_header2_"+i).style.background = "url(/img2/belediye_yeni/norm.gif) repeat-x left top";
		}
		document.getElementById("flash_pict_"+5).style.display = "block";
		document.getElementById("flash_header_"+5).style.display = "block";
		document.getElementById("flash_header2_"+5).style.background = "url(/img2/belediye_yeni/current.gif) repeat-x left top";
		this.index6 = setTimeout("FSlide.showPicture1()",4000);
	}
	
	function showPicture5() {
		
		this.count++;
		
		for(i=0; i<6; i++) {
			document.getElementById("flash_pict_"+i).style.display = "none";
			document.getElementById("flash_header_"+i).style.display = "none";
			document.getElementById("flash_header2_"+i).style.background = "url(/img2/belediye_yeni/norm.gif) repeat-x left top";
		}
		document.getElementById("flash_pict_"+4).style.display = "block";
		document.getElementById("flash_header_"+4).style.display = "block";
		document.getElementById("flash_header2_"+4).style.background = "url(/img2/belediye_yeni/current.gif) repeat-x left top";
		this.index5 = setTimeout("FSlide.showPicture6()",4000);
	}	
	
	function showPicture4() {
		
		this.count++;
		
		for(i=0; i<6; i++) {
			document.getElementById("flash_pict_"+i).style.display = "none";
			document.getElementById("flash_header_"+i).style.display = "none";
			document.getElementById("flash_header2_"+i).style.background = "url(/img2/belediye_yeni/norm.gif) repeat-x left top";
		}
		document.getElementById("flash_pict_"+3).style.display = "block";
		document.getElementById("flash_header_"+3).style.display = "block";
		document.getElementById("flash_header2_"+3).style.background = "url(/img2/belediye_yeni/current.gif) repeat-x left top";
		this.index4 = setTimeout("FSlide.showPicture5()",4000);
	}	
	
	function showPicture3() {
		
		this.count++;
		
		for(i=0; i<6; i++) {
			document.getElementById("flash_pict_"+i).style.display = "none";
			document.getElementById("flash_header_"+i).style.display = "none";
			document.getElementById("flash_header2_"+i).style.background = "url(/img2/belediye_yeni/norm.gif) repeat-x left top";
		}
		document.getElementById("flash_pict_"+2).style.display = "block";
		document.getElementById("flash_header_"+2).style.display = "block";
		document.getElementById("flash_header2_"+2).style.background = "url(/img2/belediye_yeni/current.gif) repeat-x left top";
		this.index3 = setTimeout("FSlide.showPicture4()",4000);
	}
	
	function showPicture2() {
		
		this.count++;
		
		for(i=0; i<6; i++) {
			document.getElementById("flash_pict_"+i).style.display = "none";
			document.getElementById("flash_header_"+i).style.display = "none";
			document.getElementById("flash_header2_"+i).style.background = "url(/img2/belediye_yeni/norm.gif) repeat-x left top";
		}
		document.getElementById("flash_pict_"+1).style.display = "block";
		document.getElementById("flash_header_"+1).style.display = "block";
		document.getElementById("flash_header2_"+1).style.background = "url(/img2/belediye_yeni/current.gif) repeat-x left top";
		this.index2 = setTimeout("FSlide.showPicture3()",4000);
	
	}	

	function showPicture1() {
		
		this.count++;
		
		this.cont = this.checkCount();
		
		for(i=0; i<6; i++) {
			document.getElementById("flash_pict_"+i).style.display = "none";
			document.getElementById("flash_header_"+i).style.display = "none";
			document.getElementById("flash_header2_"+i).style.background = "url(/img2/belediye_yeni/norm.gif) repeat-x left top";
		}
		document.getElementById("flash_pict_"+0).style.display = "block";
		document.getElementById("flash_header_"+0).style.display = "block";
		document.getElementById("flash_header2_"+0).style.background = "url(/img2/belediye_yeni/current.gif) repeat-x left top";
		
		if(this.cont==1 && this.count==1) {
			this.index1 = setTimeout("FSlide.showPicture2()",11000);
			//alert("here");
		} else if(this.cont) {
			this.index1 = setTimeout("FSlide.showPicture2()",4000);
		}
	}
	
	function checkCount() {
		
		if(this.count > this.StepCount) {
			clearTimeout(this.index1);
			clearTimeout(this.index2);
			clearTimeout(this.index3);
			clearTimeout(this.index4);
			clearTimeout(this.index5);
			clearTimeout(this.index6);	
			return 0;
		}
		return 1;
	}
		

}