

$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});








$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$(".fadeing_top").fadeTo("slow", 0.25);

	$(".fadeing_top").hover(function(){
		$(".fadeing_top").fadeTo("slow", 1.0); // This sets the opacity to 100% on hover
	},function(){
   		$(".fadeing_top").fadeTo("slow", 0.25); // This sets the opacity back to 60% on mouseout
	});
	$(".fadeing_bottom").fadeTo("slow", 0.25);

	$(".fadeing_bottom").hover(function(){
		$(".fadeing_bottom").fadeTo("slow", 1.0); // This sets the opacity to 100% on hover
	},function(){
   		$(".fadeing_bottom").fadeTo("slow", 0.25); // This sets the opacity back to 60% on mouseout
	});
});

