$(document).ready(function(){
		$('.mainNav li').hover(
			
			function(){
				
				$('ul', this).stop(true, true).slideDown(200);	
			},
			
			
			function(){
			$('ul', this).slideUp(200);
			}
							  
		);
		
		
});
