/*externalisation du javascript de PageDebut.ascx*/
sfHoverTOP = function() {
var sfEls = document.getElementById("navTOP").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) 
{
		sfEls[i].onmouseover=function() 
		{
			this.className+=" sfhoverTOP";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhoverTOP\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHoverTOP);


function WriteImgBackground()
{
	var nomfic;
	var rnd=Math.random();
	var num=Math.round(rnd*29);
	if (num==0) num=1;
	nomfic='images/random/menu_' + String(num)+'.jpg';
	document.writeln("<td valign=\"top\" bgcolor=\"#69A9E7\" background=\""+nomfic+"\" alt=\"Voyage sur mesure avec MELTOUR\" title=\"Voyage sur mesure avec MELTOUR\">");
}
