
// CSS Top Menu- By JavaScriptKit.com (http://www.javascriptkit.com)
// Adopted from SuckerFish menu
// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/
// Please keep this credit intact

startMenu = function() 
{
	if (document.all&&document.getElementById) 
	{
		var cssmenu_r = document.getElementById("csstopmenu_red");
		for (var i=0; i<cssmenu_r.childNodes.length; i++) 
		{
			node = cssmenu_r.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{                  
					this.className=this.className.replace(" over", "")
				}
			}
		}
		
		var cssmenu_g = document.getElementById("csstopmenu_grey");
		for (i=0; i<cssmenu_g.childNodes.length; i++) 
		{
			node = cssmenu_g.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{                  
					this.className=this.className.replace(" over", "")
				}
			}
		}
	}
}

if (window.attachEvent)
window.attachEvent("onload", startMenu)
else
window.onload=startMenu;



function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}