<!--
function Display (id)
{ document.getElementById(id).style.display = 'block'; }

function Hide (id)
{ document.getElementById(id).style.display = 'none'; }


function hover(obj){
  if(document.all){
    UL = obj.getElementsByTagName('ul');
    if(UL.length > 0){
      sousMenu = UL[0].style;
      if(sousMenu.display == 'none' || sousMenu.display == ''){
        sousMenu.display = 'block';
      }else{
        sousMenu.display = 'none';
      }
    }
  }
}

function setHover(){
  LI = document.getElementById('menu').getElementsByTagName('li');
  nLI = LI.length;

  for(i=0; i < nLI; i++){
    LI[i].onmouseover = function()
    {    
      //if (document.getElementById && document.getElementById('visite')) 
      //{       
         //document.getElementById('visite').style.display='none';
      //}
      hover(this);
    }
    LI[i].onmouseout = function()
    {
      hover(this);
      //if (document.getElementById && document.getElementById('visite'))
      //{
        //document.getElementById('visite').style.display='block';
      //}
    }
  }
}

top_accueil_on = new Image;
top_accueil_on.src = "http://site.gulliver.com/b20070111b0/web/imageen/top_accueil_on.gif";
top_accueil_off = new Image;
top_accueil_off.src = "http://site.gulliver.com/b20070111b0/web/imageen/top_accueil.gif";

top_contacts_on = new Image;
top_contacts_on.src = "http://site.gulliver.com/b20070111b0/web/imageen/top_contact_on.gif";
top_contacts_off = new Image;
top_contacts_off.src = "http://site.gulliver.com/b20070111b0/web/imageen/top_contact.gif";

top_newsletter_on = new Image;
top_newsletter_on.src = "http://www.r7g.com/6506/m/btn/top_newsletter_on.gif";
top_newsletter_off = new Image;
top_newsletter_off.src = "http://www.r7g.com/6506/m/btn/top_newsletter.gif";

ok_on = new Image;
ok_on.src = "http://www.r7g.com/6506/m/btn/ok_on.gif";
ok_off = new Image;
ok_off.src = "http://www.r7g.com/6506/m/btn/ok.gif";

submit_on = new Image;
submit_on.src = "http://site.gulliver.com/b20070111b0/web/imageen/submit_on.gif";
submit_off = new Image;
submit_off.src = "http://site.gulliver.com/b20070111b0/web/imageen/submit.gif";


// 1. Les Bulles
var IB=new Object;
var posX=0;posY=0;
var xOffset=-4;yOffset=-20;
function AffBulle(texte) {
  // IE
  if (document.all) {
    var theLeft=0;
    var theTop=0;
    if (document.documentElement && document.documentElement.scrollTop)
    {
            theTop = document.documentElement.scrollTop;
            theLeft = document.documentElement.scrollLeft;
    }
    else if (document.body)
    {
            theTop = document.body.scrollTop
            theLeft = document.body.scrollLeft
    }
    posX=event.x+theLeft; //modifs CL 09/2001 - IE : regrouper l'évènement
    posY=event.y+theTop;
  }
  var contenu="<TABLE border=0 cellspacing=0 cellpadding="+IB.NbPixel+"><TR bgcolor='"+IB.ColContour+"'><TD><TABLE border=0 cellpadding=5 cellspacing=0 bgcolor='"+IB.ColFond+"'><TR><TD><FONT size='1' face='arial' color='"+IB.ColTexte+"'><span style='font-size: 11px'>"+texte+"</span><\/FONT><\/TD><\/TR><\/TABLE><\/TD><\/TR><\/TABLE>&nbsp;";
  var finalPosX=posX-xOffset;
  if (finalPosX<0) finalPosX=0;
  if (document.all) // IE et Opera
  {
    //var f=window.event;
    //doc=document.body.scrollTop;
    bulle.innerHTML=contenu;
    document.all["bulle"].style.top=posY+yOffset;
    document.all["bulle"].style.left=finalPosX;//f.x-xOffset;
    document.all["bulle"].style.visibility="visible";
	document.all["bulle"].style.zIndex=2;
  }
  else if (document.layers) 
  {
    document.layers["bulle"].document.write(contenu);
    document.layers["bulle"].document.close();
    document.layers["bulle"].top=posY+yOffset;
    document.layers["bulle"].left=finalPosX;
    document.layers["bulle"].zIndex=2;
  }
  else if (document.getElementById) // FireFox
  {
    // alert( document.getElementById("bulle_firefox").style );
    document.getElementById("bulle_firefox").innerHTML       =contenu;
    document.getElementById("bulle_firefox").style.top       =(posY+yOffset) + "px";
    document.getElementById("bulle_firefox").style.left      =finalPosX + "px";
    document.getElementById("bulle_firefox").style.visibility="visible";
	document.getElementById("bulle_firefox").style.zIndex=2;
  }
}
function getMousePos(e) {
  if (document.all) {
    posX=event.x+document.body.scrollLeft; //modifs CL 09/2001 - IE : regrouper l'évènement
    posY=event.y+document.body.scrollTop;
  }
  else {
    posX=e.pageX; //modifs CL 09/2001 - NS6 : celui-ci ne supporte pas e.x et e.y
    posY=e.pageY; 
  }
}
function HideBulle() {
	if (document.layers) {document.layers["bulle"].visibility="hide";}
	if (document.all) {document.all["bulle"].style.visibility="hidden";}
	else if (document.getElementById){document.getElementById("bulle_firefox").style.visibility="hidden";}
}

function InitBulle(ColTexte,ColFond,ColContour,NbPixel) {
	IB.ColTexte=ColTexte;
        IB.ColFond=ColFond;
        IB.ColContour=ColContour;
        IB.NbPixel=NbPixel;

	if (document.layers) {
		window.captureEvents(Event.MOUSEMOVE);
                window.onMouseMove=getMousePos;
		document.write("<LAYER name='bulle' top=0 left=0 visibility='hide'><\/LAYER>");
	}
	if (document.all) {
		document.write("<DIV id='bulle' style='position:absolute;top:0;left:0;visibility:hidden'><\/DIV>");
                // Pose problème avec IE => inutile, se trouve dans getMousePos
                //		document.onmousemove=getMousePos;
	}
	//modif CL 09/2001 - NS6 : celui-ci ne supporte plus document.layers mais document.getElementById
	else if (document.getElementById) {
	        document.onmousemove=getMousePos;
	        document.write("<DIV id='bulle_firefox' style='position:absolute;top:0;left:0;visibility:hidden'><\/DIV>");
	        //document.write("<DIV id='bulle' style='position:absolute;top:0;left:0;visibility:hidden'><\/DIV>");
	}
}

-->