$(document).ready(function() {
	$("#header ul li").hover(function(){
		$("ul", this).fadeIn(250);
	}, function(){
		$("ul", this).fadeOut(250);
	});
});
