	$(document).ready(function () {	

		
		function show() {
			jQuery('ul', this).slideDown(300);

		}
		
		function hide() { 
			jQuery('ul', this).slideUp(200 );	
		}
		
		jQuery('#menuTop .content ul li').hoverIntent({
			sensitivity: 1,  
			interval: 40,  
			over: show,   
			timeout: 100,   
			out: hide      
		});

 
		
	});
