

jQuery(function($){
	
	$('.dropParent').hoverIntent(
	function(){
	
		$(this).children('.drop').slideDown(200);
	},
	function(){
		$(this).children('.drop').slideUp(200);
	}
	);
}); 
