var menuOver = false;
var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);
function mouseover(div){
	div.className = "sous_menu_over"
	menuOver = true;
}

function mouseout(div){
	div.className = "sous_menu"
	menuOver = false;
}

function showSousMenu(id){
	document.getElementById('sous_menu' + id).className = 'bande_menu';
	document.getElementById('menu' + id).className = 'menu_hover';
}

function checkOver(id){
	setTimeout("checkIfOver(" + id + ")",150);
}

function checkIfOver(id){
	if(!menuOver){
		document.getElementById('sous_menu'+id).className = 'hid';
		document.getElementById('menu' + id).className = 'mn'+id;
	}
}

function checkField(){
	
}

function changePage(id){
    document.location.href="index.php?id="+id;
}

function modRule(id)
{
	if (!document.styleSheets) return;
	var thecss = new Array();
	if (document.styleSheets[0].cssRules)  // Standards Compliant
        {
	   thecss = document.styleSheets[0].cssRules;
        }
	else
        {
           thecss = document.styleSheets[0].rules;  // IE
        }
        for (i=0;i<thecss.length;i++)
        {
           if ((thecss[i].selectorText.toLowerCase()=='zone'+id))
           {
	     thecss[i].style.cssText="height:0";
           }
        }
}
