$(document).ready(function () {
	/* drop-down menu */
	$('.Menu > ul').mouseover(function () {
		$('ul', this).show();
		$(this).mouseout(function (){ $('ul', this).hide();});
	});
});


