// Umschalter Anfrage
function schalter(vari) {
	if (vari=='n') {
	document.getElementById('reservierungsanfrage').style.display = 'none';
	document.getElementById('newsletter').style.display = 'inline';
	}
	if (vari=='a') {
	document.getElementById('reservierungsanfrage').style.display = 'inline';
	document.getElementById('newsletter').style.display = 'none';
	}
}



    
// HOVER FUER MENU
	  $(document).ready(function(){
	  
			$("#nav-one li").hover(
			
				function(e){ 
				    $("ul", this).hide().fadeIn("slow");
				 }, 
				function() {  } 
			);
	  	if (document.all) {
				$("#nav-one li").hoverClass ("sfHover");
			}
	  });
	  
		
	
	  
		$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};	  

