$(document).ready(function(){

 /*
  $('.restaurant').mouseover(function() {
    $('#indexlogo').fadeIn('slow').addClass('re');
  });
  $('.restaurant').mouseout(function() {
    $('#indexlogo').removeClass('re');
  });
  */
  
    $('.ha').hide();
    $('.de').hide();
    $('.re').hide();

  $('.hamam').mouseover(function() {
    $('.ha').fadeIn(400);
  });
  $('.hamam').mouseout(function() {
    $('.ha').fadeOut(400);
  });
  
  $('.dehor').mouseover(function() {
    $('.de').fadeIn(400);
  });
  $('.dehor').mouseout(function() {
    $('.de').fadeOut(400);
  });
  
  $('.restaurant').mouseover(function() {
    $('.re').fadeIn(400);
  });
  $('.restaurant').mouseout(function() {
    $('.re').fadeOut(400);
  });
  
  /*$(".hammam").hover(
        function () {
          $("#indexlogo").addClass('ha');
          $("#indexlogo.ha").fadeIn(200); 
        }, 
        function () {
          $("#indexlogo").removeClass('ha');
          $("#indexlogo.ha").fadeOut(600); 
        }
      );*/
  
});
