$(document).ready(function() {
	
	$("#header ul li").mouseenter(function(){

		
		$(this).children('ul').fadeIn('fast');
	
	});

	$("#header ul li").mouseleave(function(){


		$(this).children('ul').fadeOut('fast');
	
	});	


	
});

