<!--Javascript fourni par-->
<!-- [Script Masters.com]--> 
<!-- http://www.script-masters.com/ --> 

function PopFoto(img){
  photo1= new Image();
  photo1.src=(img);
  Control(img);
}

function Control(img){
  if((photo1.width!=0)&&(photo1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Control('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}

function viewFoto(img){
  largeur=photo1.width+20;
  hauteur=photo1.height+20;
  valeur="width="+largeur+",height="+hauteur
;
popup=window.open(img,"",valeur);
}

sfHover = function() {
	var sfEls = document.getElementById("nav_haut").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
