$(document).ready(function() {

	$("#header ul li").hover( function(){ $(this).find("ul").show(); }, function(){ $(this).find("ul").hide(); } );
	
	$("#header ul li ul").hover( function(){}, function(){ $(this).hide(); } );
	
});
