$(document).ready(function(){
	$(".fade_img").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".fade_img").hover(function(){
	$(this).fadeTo("fast", 0.8); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
	});
						});
						   
$(document).ready(function(){
	
						    $("#mainNavigation li").hover(function(){
							   $(this).find("span").show(); // This should set the opacity to 100% on hover
						   	   },function(){
							   $(this).find("span").fadeTo("slow", 0); // This should set the opacity back to 30% on mouseout
							});
							
						   $("#mainNavigation li span").fadeTo("slow", 0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   		 $("#mainNavigation li").hover(function(){
									// $(this).find("a").fadeTo("fast", 1); // This should set the opacity to 100% on hover - RollOver Nav
						   			$(this).find("span").fadeTo("fast", 0.6); // This should set the opacity to 100% on hover - RollOver Underline
									},function(){
									$(this).find("span").fadeTo("slow", 0); // This should set the opacity back to 30% on mouseout
									// $(this).find("a").fadeTo("slow", 1); // This should set the opacity to 100% on hover
								 });
						  
						
						   
						/*
						    $("#mainNavigation li.fade_active span").fadeTo("slow", 1); // This sets the opacity of the thumbs to fade down to 30% when the page loads
							$("#mainNavigation li.fade_active").hover(function(){
							  		$(this).find("a").fadeTo("slow", 1); // This should set the opacity to 100% on hover
						   			$(this).find("span").fadeTo("slow", 1); // This should set the opacity to 100% on hover
									},function(){
									$(this).find("span").fadeTo("slow", 1); // This should set the opacity back to 30% on mouseout
									$(this).find("a").fadeTo("slow", 1); // This should set the opacity to 100% on hover
						});
						
						*/
					 });



