// JavaScript Document


/* 

	haber blogundaki linkleri sekillendirir

*/


var c = 0;
var t;

function changethis(e)
{
	
	var hotblock = document.getElementById("hotlink");
	var newblock = document.getElementById("news" + e);
	var hotphoto = document.getElementById("hotphoto");
	
	if(e >= 0)
	{
		if (t) {
			window.clearTimeout(t);
		}
		hotblock.href = newblock.getAttribute("href");
		hotblock.innerHTML = "<span>" + newblock.getAttribute("subject") + "</span>" + newblock.getAttribute("text")
		hotphoto.style.backgroundImage = "url(" + newblock.getAttribute("photo") + ")"

	}
		

}

function changeAutoThis(e)
{
	
	var hotblock = document.getElementById("hotlink");
	var newblock = document.getElementById("news" + e);
	var hotphoto = document.getElementById("hotphoto");
	
	if(e >= 0)
	{
		hotblock.href = newblock.getAttribute("href");
		hotblock.innerHTML = "<span>" + newblock.getAttribute("subject") + "</span>" + newblock.getAttribute("text")
		hotphoto.style.backgroundImage = "url(" + newblock.getAttribute("photo") + ")"

	}
		

}



function newIndexChange(){
	
	var ti;
	if(c == 5){
		c = 0;
	}

	changeAutoThis(c);
	c=c+1;
	t=setTimeout("newIndexChange()",5000);

}

/*
	---------------------------------------------------------
*/


