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