$(document).ready(function(){

		$('#navMain > li').each(function(i){
			$(this).hover(function(){  
				$(this).find('ul.subnav').show();
				$(this).find('ul.nav3').show();
			},function(){
				$(this).find('ul.subnav').hide();
				$(this).find('ul.nav3').hide();
			});
		});
		
		$('#navMain > li > ul > li').each(function(i){
			$(this).hover(function(){  
				$(this).find('ul.thirdnav').show();
				$(this).find('ul.nav3').show();
			},function(){
				$(this).find('ul.thirdnav').hide();
				$(this).find('ul.nav3').hide();
			});
		});

		
	});