// JavaScript Document
/* 

	haber blogundaki linkleri sekillendirir

*/
var i=1;
var durum=0;
function changethis(e)
{
	var hotblock = document.getElementById("hotlink");
	var newblock = document.getElementById("news" + e);
	var hotphoto = document.getElementById("hotphoto");
	var hotlink  = document.getElementById("hotlink");
	if(e)
	{
		hotblock.innerHTML = "<span>" + newblock.getAttribute("subject") + "</span>" + newblock.getAttribute("text")
		hotphoto.style.backgroundImage = "url(" + newblock.getAttribute("photo") + ")"	
		hotlink.href=newblock.getAttribute("href")	
		//hotphoto.click = location.href="default.asp?Sayfa=HaberDetay&IND="+newblock.getAttribute("aydi")+"#Icerik";
		//i=e+1;
		
	}

}

function mOver(){
durum=1
}

function mOut(){
durum=0;
}

function mOverU(u){
changethis(u);
durum=1;
}

function degis(){
if(durum==0){
changethis(i);
i=i+1;
if(i>6)i=1;
}
//else
//	changethis(i-1);
}


window.setInterval(degis,6000);


/*
	---------------------------------------------------------
*/
