$(document).ready(function(){

		$('#nav > li').each(function(i){
		$(this).find('ul.nav2').hide();		 
			$(this).hover(function(){  
				$(this).find('ul.nav2').show();
			},function(){
				$(this).find('ul.nav2').hide();
			});
		});
		
	});