var indw = 0;
var ie = /MSIE/.test(navigator.userAgent);
var moz = !ie && navigator.product == "Gecko";
// -------------------------------------------------------------------------------------
function GoTitre(nxt)
// -------------------------------------------------------------------------------------
{
	//window.location.replace("abovision2.php?" + nxt);
	window.location.replace("http://www.jemabonne.fr/abov/abovision2.php?" + nxt);
	
}
// -------------------------------------------------------------------------------------
function voirdeduc(e)
// -------------------------------------------------------------------------------------
{
	    var posx, posy;
   		if (!e)  var e = window.event; 
   
		if (e.pageX || e.pageY)
		{
		posx = e.pageX;
      	posy = e.pageY;
   		}
   		else if (e.clientX || e.clientY)
   		{
	    posx = e.clientX + document.body.scrollLeft;
      	posy = e.clientY + document.body.scrollTop;
   		}
	   	posx = 50;
	   	posy = 0;

	    document.getElementById("deduction").style.position = "relative";
	    document.getElementById("deduction").style.top = posy + "px";
	    document.getElementById("deduction").style.left =  posx +"px";

		new Effect.Appear('deduction', {duration:1, from:0, to:1.0 , queue: {position: 'end', scope: 'scope1', limit:3}});
}
// -------------------------------------------------------------------------------------
sfHover = function()
// -------------------------------------------------------------------------------------
{
	
	if (document.getElementById("nav"))
	{
	var sfEls = document.getElementById("nav").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);
// -------------------------------------------------------------------------------------

