$(document).ready(function(){

//Shows and hides the overhead menus
$("#Nav li").hover(
	function () {
		$(this).children("ul").fadeIn("fast");
	}, 
	function () {
		$(this).children("ul").fadeOut("fast");
	}
);

//Shows and hides the overhead menus
$("#SubNav li").hover(
	function () {
		$(this).children("ul").fadeIn("fast");
	}, 
	function () {
		$(this).children("ul").fadeOut("fast");
	}
);


});
