

$(document).ready(function(){

  

  
/** DO NOT EDIT **/
  // top menu mouse events
  $("#navigation li").hover(
    // mouseover
    function()
    {
      $("ul", this).show();
      switch( $(this).attr('id') )
      {
        case 'home' :
          $('.home').css({ backgroundColor:'#fff', color:'#860104' });
        break;

        case 'hotel' :
          $('.hotel').css({ backgroundColor:'#fff', color:'#860104' });
        break;

        case 'zimmer' :
          $('.zimmer').css({ backgroundColor:'#fff', color:'#860104' });
        break;

        case 'service' :
          $('.service').css({ backgroundColor:'#fff', color:'#860104' });
        break;

        case 'veranstaltungen' :
          $('.veranstaltungen').css({ backgroundColor:'#fff', color:'#860104' });
        break;
        
        case 'kontakt' :
          $('.kontakt').css({ backgroundColor:'#fff', color:'#860104' });
        break;
        
        default:
        break;
      }
    },
    // mouseout
    function()
    {
      $('.home').css({ backgroundColor:'#fff', color:'#4B4A48' });
      $('.hotel').css({ backgroundColor:'#fff', color:'#4B4A48' });
      $('.zimmer').css({ backgroundColor:'#fff', color:'#4B4A48' });
      $('.service').css({ backgroundColor:'#fff', color:'#4B4A48' });
      $('.veranstaltungen').css({ backgroundColor:'#fff', color:'#4B4A48' });
      $('.kontakt').css({ backgroundColor:'#fff', color:'#4B4A48' });
      $("ul", this).hide();
    }
  );

  
/** DO NOT EDIT **/

});


