$(function() {
		//THIS IS ALL FOR THE TOP MENU ON ALL PAGES
		// set opacity to nill on page load
		$("#main-nav span").css("opacity","0");
		$("#main-nav span").css("visibility","visible");
		// on mouse over
		$("#main-nav span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
		
		//THIS IS FOR THE BOTTOM MENU ON default.aspx
		// set opacity to nill on page load
		$("#rotating-images-nav span").css("opacity","0");
		$("#rotating-images-nav span").css("visibility","visible");
		// on mouse over
		$("#rotating-images-nav span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});

