jQuery(function($) {
	$("#navigation ul li").hover(function (e) {
		$(this).find("ul").show();
	}, function (e) {
		$(this).find("ul").hide();
	});
});