$(function(){
	$('#header ul li').hover(function(){
		$(this).find('ul').css('display', 'block');
	},function(){
		$(this).find('ul').css('display', 'none');
	});
});
