// source : http://www.alistapart.com/articles/horizdropdowns
if (navigator.userAgent.indexOf("MSIE 6") != -1) {
  startList = function() {
	 if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	 }
  }
  window.onload=startList;
}
function favoris(url,nom) {
	browserName = navigator.appName.substring(0,3);
	browserVer = parseInt(navigator.appVersion);
	if (browserName == "Mic" & browserVer >= 4) {
		window.external.AddFavorite(url, nom);
	} else {
		window.alert('Au clavier: CTRL+D pour ajouter cette page aux favoris');
	}
}
function SetCheckboxes(value) {
	cases = document.forms["formulaire"].elements["images[]"];
    for(i=0; i<cases.length; i++) {
		cases[i].checked=value;
    }
}
/*
.lienpop, .lienpopCarte {
	border: 1px #333 solid; 
	background: #fff; 
	padding: 1px 2px; 
	color: #000;
	width: auto; 
	text-align: justify; 
	position:absolute; 
	top: 146px; 
	right: 10px; 
	visibility:hidden;
}
.lienpopCarte {
	background: url('images/fondmainvert.gif'); 
	top: 113px; 
	left: 10px;
	width: 160px;
}
function toggleDiv(id,flagit) {
	if (flagit=="1"){
		if (document.layers) document.layers[''+id+''].visibility = "show"
		else if (document.all) document.all[''+id+''].style.visibility = "visible"
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
	}
	else
		if (flagit=="0"){
			if (document.layers) document.layers[''+id+''].visibility = "hide"
			else if (document.all) document.all[''+id+''].style.visibility = "hidden"
			else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
		}
}
*/

