function setEvents(){
	Event.observe($('title'),'click',function(){
		document.location.href = "/index.php";
	})
}

Event.observe(window,'load',setEvents);
