$(document).ready(function(){
						   $("#content").hide();
						   $("#content").fadeTo("slow", 0.0);
						   $("#content").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 50% when the page loads
						   $("#content").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 50% on mouseout
						  	 });
						   });
$(document).ready(function(){
						   $("#header").hide();
						   $("#header").fadeTo("fast", 0.0);
						   $("#header").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 50% when the page loads
						   $("#header").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 50% on mouseout
						  	 });
						   });
$(document).ready(function(){
						   $(".public_roundeds").hide();
						   $(".public_roundeds").fadeTo("slow", 0.0);
						   $(".public_roundeds").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 50% when the page loads
						   $(".public_roundeds").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 50% on mouseout
						  	 });
						   });
$(document).ready(function(){
						   $(".contnet_left").hide();
						   $(".contnet_left").fadeTo("slow", 0.0);
						   $(".contnet_left").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 50% when the page loads
						   $(".contnet_left").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 50% on mouseout
						  	 });
						   }); 
$(document).ready(function(){
						   $(".archive-item").hide();
						   $(".archive-item").fadeTo("slow", 0.0);
						   $(".archive-item").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 50% when the page loads
						   $(".archive-item").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 50% on mouseout
						  	 });
						   }); 						   
					

