function afficheMaxi(chemin)
	{
	i1=new Image;
	i1.src=chemin;
	html='<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>Photo</title></head>'
	html=html+'<body onblur=javascript:self.close()>'
	html=html+'<center><img src="'+chemin+'" border=0 name=image onLoad="window.resizeTo(document.image.width+35,document.image.height+90)">'
	html=html+'</center></body></html>';
	popupImage=window.open('','Photo','left=150,top=150,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	
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;
