
//document.write("<style type=\"text/css\">");
//document.write("#intro,#page{visibility: hidden}");
//document.write("</style>");

function doRedirect() { //funzione con il link alla pagina che si desidera raggiungere
location.href = "./home.php";
}

function initScrollLayers() {
	if (document.getElementById('page')!=null){
		a1= new fx.Opacity('page', {duration: 400});
		setTimeout("a1.custom(0, 1)",0);
	}
	if (document.getElementById('intro')!=null){
		a0= new fx.Opacity('intro', {duration: 2000});
		setTimeout("a0.custom(0, 1)",100);
		window.setTimeout("doRedirect()",5000); //Fa partire il redirect dopo tot. secondi
	}
}