
window.addEvent('domready', function(){
	$('principal').addEvent('click', redirectHomePage);	
});


function redirectHomePage() {
	//alert('the dom is ready');	
	document.location.href="./";
}