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