/*
  functions for the coupe buttons on the resultats page
*/

var menu = {

over:false,

show:function()
{
  this.over = true;

  document.getElementById('buttons').style.visibility = 'visible';
},

hide:function()
{
  this.over = false;

  setTimeout("menu.perform()", 500);
}
,
perform:function()
{
  if(this.over) return;

  document.getElementById('buttons').style.visibility = 'hidden';
}
}


