/*  
----------------------------------------
Copyright (c) 2008 poe-net.com developer 
----------------------------------------
*/


onload = function() 
{		
	 //-- diaporama_fondu --//
		
    if(document.getElementById("box_logo_diapo"))
	{	
		imgsrc = document.getElementById("box_logo_diapo").getElementsByTagName("img");
		nxp = document.getElementById("logo").offsetWidth;
		nyp = document.getElementById("logo").offsetHeight;
		
		B0                      = document.createElement("div");
		B0.style.background     = "url('"+imgsrc[0].src+"') no-repeat";
		B0.style.position       = "absolute";
		//B0.style.left           = "0px";
		//B0.style.top            = "0px";
		B0.style.width          = nxp + "px";
		B0.style.height         = nyp + "px";
		B0.style.filter         = "alpha(opacity=0)";
		B0.style.opacity        = 0;
		document.getElementById("logo").appendChild(B0);
		
		B1                      = document.createElement("div");
		B1.style.background     = "url('"+imgsrc[1].src+"') no-repeat";
		B1.style.position       = "absolute";
		//B1.style.left           = "0px";
		//B1.style.top            = "0px";
		B1.style.height         = nyp + "px";
		B1.style.width          = nxp + "px";
		B1.style.filter         = "alpha(opacity=0)";
		B1.style.opacity        = 0;
		document.getElementById("logo").appendChild(B1);
		
		setInterval("alpha();", 64);
	}	
}
