$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$("#logo a").fadeTo("fast", 1.0);
		$("#logo a").hover(function(){
		$("#logo a").fadeTo("fast", 0.75); // This sets the opacity to 60% on hover
		},function(){
		$("#logo a").fadeTo("fast", 1.0); // This sets the opacity back to 100% on mouseout
		});
	});
