//Function Javascript

function onMenuOver(text)
{
  document.getElementById('intro_menu_info').innerHTML=text;
}

function onMouseOut()
{
  document.getElementById('intro_menu_info').innerHTML='<b>Le site du phare de la baleine est en cours de reconstruction.<br/><br/>Retrouvez nous bientôt !</b>';
}

function launch()
{
  var num = Math.floor(Math.random()*10);
  document.getElementById('photov').src='images/accueil/photov/0'+num+'.jpg';
  document.getElementById('photoh').src='images/accueil/photoh/0'+num+'.jpg';
  photo1();
}

function photo1()
{
  var num = Math.floor(Math.random()*10);
  document.getElementById('photov').src='images/accueil/photov/0'+num+'.jpg';
  window.setTimeout("photo2()",2000);
}

function photo2()
{
  var num = Math.floor(Math.random()*10);
  document.getElementById('photoh').src='images/accueil/photoh/0'+num+'.jpg';
  window.setTimeout("photo1()",2000);
}
