var $j = jQuery.noConflict();


$j(document).ready(function(){
		$j('.topNav li').hover(
			
			function(){
				
				$j('ul', this).stop(true, true).slideDown(300);	
			},
			
			
			function(){
			$j('ul', this).slideUp(300);
			}
							  
		);
		
		
});
