<!--
var offsetxpoint=-60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(therank){
if (ns6||ie){
switch (therank){
   case 1 :
      tipobj.style.width="270px"
      tipobj.innerHTML="Confit de canard pommes sarladaises";
      break;
   case 2 :
      tipobj.style.width="95px"
      tipobj.innerHTML="Topsi banane";
      break;
   case 3 :
      tipobj.style.width="95px"
      tipobj.innerHTML="Maffé viande";
      break;
   case 4 :
      tipobj.style.width="95px"
      tipobj.innerHTML="Bongo tchobi";
      break;
   case 5 :
      tipobj.style.width="95px"
      tipobj.innerHTML="Poulet yassa";
      break;
   case 6 :
      tipobj.style.width="95px"
      tipobj.innerHTML="Maffé viande";
      break;
   case 7 :
      tipobj.style.width="95px"
      tipobj.innerHTML="Bongo tchobi";
      break;
   case 8 :
      tipobj.style.width="125px"
      tipobj.innerHTML="Magret de canard";
      break;
   case 9 :
      tipobj.style.width="75px"
      tipobj.innerHTML="DG poulet";
      break;
   case 10 :
      tipobj.style.width="152px"
      tipobj.innerHTML="Moelleux au chocolat";
      break;
   case 11 :
      tipobj.style.width="95px"
      tipobj.innerHTML="Tilapia braisé";
      break;
   case 12 :
      tipobj.style.width="95px"
      tipobj.innerHTML="Poulet yassa";
      break;
   case 13 :
      tipobj.style.width="152px"
      tipobj.innerHTML="Carpaccio au saumon";
      break;
   case 14 :
      tipobj.style.width="124px"
      tipobj.innerHTML="Avocat crevettes";
      break;
   case 15 :
      tipobj.style.width="152px"
      tipobj.innerHTML="Brochettes de boeuf";
      break;
   case 16 :
      tipobj.style.width="58px"
      tipobj.innerHTML="Gambas";
      break;
   case 17 :
      tipobj.style.width="212px"
      tipobj.innerHTML="Marinade de saumon à l'aneth";
      break;
   case 18 :
      tipobj.style.width="280px"
      tipobj.innerHTML="Foie gras de canard au confit d'oignons";
      break;
   default : tipobj.innerHTML="Spécialité maison";
}
enabletip=true
return false
}
}

function positiontip(e){
if (enabletip){
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20

var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
else if (curX<leftedge)
tipobj.style.left="5px"
else
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetxpoint+"px"

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight)
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
else
tipobj.style.top=curY+offsetypoint+"px"
tipobj.style.visibility="visible"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}

document.onmousemove=positiontip
-->

