$(function() {
	$("body div.navigation ul li").mouseover(function() {
		$(this).children("ul").show();
	});
	$("body div.navigation ul li").mouseout(function() {
		$(this).children("ul").hide();
	});
})