$(document).ready(function() {
	
	$('div.MainWrapper ul.Menu li').bind('mouseover', function() {
		$(this).children('ul').show();
	}).bind('mouseout', function() {
		$(this).children('ul').hide();
	});
	
});
