// JavaScript Document$(document).ready(function(){

$(document).ready(function(){
						   $("#div").fadeTo(1, 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#div2").fadeTo(1, 0);
						   $("#div").hover(function(){
						   $(this).fadeTo("slow", 0); // This should set the opacity to 100% on hover
						   $("#div2").fadeTo("slow", 1.0);
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
						   $("#div2").fadeTo("slow", 0);
							   	});
						   });
