$(document).ready(function() { 

	function auf() { 
		$(this)
			.addClass('hover')
			.children('ul')
			.show(); 
	};
	
	function zu() { 
		$(this)
			.removeClass('hover')
			.children('ul')
			.hide(); 
	};
	
	$('#nav li:has(>ul)').hoverIntent({
	   sensitivity: 1, 
	   interval: 30, 
	   over: auf, 
	   timeout: 400, 
	   out: zu 
	});	
	
});