$(document).ready(function(){
	var config = {    
		over: showNav, // function = onMouseOver callback (REQUIRED)    
		timeout: 200, // number = milliseconds delay before onMouseOut    
		out: hideNav // function = onMouseOut callback (REQUIRED)    
	};


	$('#navigation li').hoverIntent(config);
	
	function showNav(){
		$(this).stop().children('ul').show();
	}
	function hideNav(){
		$(this).stop().children('ul').hide();
	}
});
