$(document).ready(function(){
						   $(".img_fade").fadeTo("slow", 0.4); // This sets the opacity of the thumbs to fade down to 20% when the page loads
						   $(".img_fade").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.7); // This should set the opacity back to 60% on mouseout
						   });
						   });

$(document).ready(function(){
						   $(".nav_fade").fadeTo("slow", 0); // This sets the opacity of the thumbs to fade down to 0% when the page loads
						   $(".nav_fade").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0); // This should set the opacity back to 0% on mouseout
						   });
						   });
$(document).ready(function(){
						   $(".book_fade").fadeTo("slow", 0.1); // This sets the opacity of the thumbs to fade down to 10% when the page loads
						   $(".book_fade").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.5); // This should set the opacity back to 50% on mouseout
						   });
						   });

$(document).ready(function(){
						   $("#text p").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#text p").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
							   	});
						   });

$(document).ready(function(){
						   $("#div").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#div").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
							   	});
						   });
$(document).ready(function(){

	$("h2").append('<span></span>')

	$("div#books ul li a").hover(function(){

	    var largeAlt = $(this).attr("title");

	  $("h2").attr({ span: largeAlt });

	  $("h2 span").html(" " + largeAlt + ""); return false;
	});

});
