$(document).ready(function() {
	$('#Menu li').bind('mouseenter', function() {
		$(this).children('ul').show();
	}).bind('mouseleave', function() {
		$(this).children('ul').hide();
	});
});
