var c=1;
var t2;
function timedCount2()
{
if(document.getElementById('total_img').value > 0){
document.getElementById('slide_show').innerHTML = '<center><img src="images/aktif.png"  alt="active" style="cursor:pointer;" onclick="stopCount2(-1);" /></center>' ;
document.getElementById('slide_show2').innerHTML = '<center><img src="images/slide.png" alt="active" style="cursor:pointer;" onclick="stopCount2(-1);" /></center>' ;

var tot = Number(document.getElementById('total_img').value) + 1 ; 
//var total_loop = Number(document.getElementById('total_loop').value) ;
c = c%tot
if(c==0) c = 1 ;

resmi_goster(c) ;
document.getElementById('sira_img').value=c;
c=c+1;

t2=setTimeout("timedCount2()",4000);

}

}

function stopCount2(id)
{
clearTimeout(t2);

if(id == -1 ) {
id =  document.getElementById('sira_img').value ;


}






var tot = Number(document.getElementById('total_img').value)-1 ;
var secili = id-1 ;
i=1;
while (i<=tot)
{
if(i== secili ) document.getElementById('td'+i+'').style.backgroundColor="#C9DFEE";
else document.getElementById('td'+i+'').style.backgroundColor="#FFFFFF";
i++;
}



document.getElementById('slide_show').innerHTML = '<center><img   src="images/pasif.png" style="cursor:pointer;" alt="pasif" onclick="timedCount2();"  /></center>' ;
document.getElementById('slide_show2').innerHTML = '<center><img src="images/slide.png" style="cursor:pointer;" alt="pasif" onclick="timedCount2();;" /></center>' ;


}	

function resmi_goster(id)
{
var tot = Number(document.getElementById('total_img').value)-1 ;
document.getElementById('video_area').style.display= "none";
document.getElementById('center_image').style.display= "block";
var secili = id-1 ;
var resim = Picture[secili] ;
/*
if(id == 1) kaydir('ust') ;
if(id == 9) kaydir('alt') ;

*/

i=0;
while (i<=tot)
{
if(i== secili ) document.getElementById('td'+i+'').style.backgroundColor="#C9DFEE";
else document.getElementById('td'+i+'').style.backgroundColor="#FFFFFF";
i++;
}

document.getElementById('center_image').innerHTML = '<img src="'+resim+'"  alt="'+resim+'"/>' ;
document.getElementById('sira_img').value = id ;


}
	








function kaydir(pozisyon)
{

document.getElementById(pozisyon).focus();





}

function map_goster(){
	stopCount2(-1);
	document.getElementById('video_area').style.display= "block";
	document.getElementById('center_image').style.display= "none";
	}

