if(location.pathname=='/'){
	if(window.attachEvent){
		window.attachEvent('onload',OnLoad);
	}
	else if (window.addEventListener){
		window.addEventListener('load',OnLoad,false);
	}
}

function OnLoad(){
	TIMERS.indextimer=setTimeout(gohome,10000);
	var content=document.getElementById('content');
	if(window.attachEvent){
		content.attachEvent('onclick',gohome);
	}
	else if (window.addEventListener){
		content.addEventListener('click',gohome,true);
	}
}
function gohome(){
	clearTimeout(TIMERS.indextimer);
	window.location='/home';
}

