$(document).ready(function() {
	$("#menu ul").css({"display" : "none"});
	$("#menu li").hover(function() {
		$("ul", this).css({"display" : "block"});
	}, function() {
		$("ul", this).css({"display" : "none"});
	});
});

