$(document).ready(function() {
	
	// Workaround für den IE
	$("#nav ul li").hover(function() { //Hover over event on list item		
		$(this).find("ul.sub").show(); //Show the subnav
	} , function() { //on hover out...		
		$(this).find("ul.sub").hide(); //Hide the subnav
	});
	
	
	 $("#submit").click(function(){
	   
    return false;
    
    
    
   });
	
});
