$(document).ready(function() {

  /* Animation logo */
  function logoanimation() {
    $('#logo-restaurant').animate({opacity:"1"}, 1000).animate({dummy:1}, 4000).animate({opacity:"0"}, 1000);
    $('#logo-jatetxe').animate({opacity:"0"}, 1000).animate({dummy:1}, 4000).animate({opacity:"1"}, 1000).animate({dummy:1}, 4000, logoanimation) ;
  }
  $('#logo-jatetxe').css({opacity:"0"});
  $('#logo-jatetxe').css({display:"block"});
  logoanimation();


  /* Menu LavaLamp */
  $("#nav").lavaLamp({fx: "easeOutBounce", speed: 1000, returnDelay: 500, homeTop:50, homeLeft:1, homeHeight:38, homeWidth:100}) ;


  /* Tableau noir et feuilles */
  $('#menudujourwrapper').bind("mouseenter",function(){
    $('#feuilles1').stop() ;
    $('#feuilles1').animate({top:"-30px", left:"-10px"}, 500);
  }).bind("mouseleave",function(){
    $('#feuilles1').stop() ;
    $('#feuilles1').animate({top:"0px", left:"0px"}, 500);
  });

  /* Duo de news - Arrière-plan mobile */
  $('#duonews > div').bind("mouseenter",function(){
    $(this).stop() ;
    $(this).animate({backgroundPosition:"(0 105%)"}, 500);
  }).bind("mouseleave",function(){
    $(this).stop() ;
    $(this).animate({backgroundPosition:"(0 100%)"}, 500);
  });

  /* Copyright - Déplacement des feuilles */
  $('#copyright, #feuilles2, #feuilles3').bind("mouseenter",function(){
    $('#feuilles2').stop() ;
    $('#feuilles2').animate({top:"40px", right:"160px"}, 500);
    $('#feuilles3').stop() ;
    $('#feuilles3').animate({top:"5px", right:"175px"}, 500, function() {
      $('#feuilles3').css('z-index','1') ;
      }) ;
  }).bind("mouseleave",function(){
    $('#feuilles3').css('z-index','5') ;
    $('#feuilles2').stop() ;
    $('#feuilles2').animate({top:"30px", right:"140px"}, 500);
    $('#feuilles3').stop() ;
    $('#feuilles3').animate({top:"15px", right:"150px"}, 500) ;
  });

});