/* Main thumbs fade up on mouseover */
$(document).ready(function(){
	$("img.thumbgrc").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 100% when the page loads

	$("img.thumbgrc").hover(function(){
		$(this).fadeTo("fast", 0.6); // This should set the opacity to 80% on hover
	},function(){
   		$(this).fadeTo("normal", 1.0); // This should set the opacity back to 100% on mouseout
	});
});

/* Logo thumbs fade up on mouseover */
$(document).ready(function(){
	$("img.thumblogo").fadeTo("slow", 0.4); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$("img.thumblogo").hover(function(){
		$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("normal", 0.4); // This should set the opacity back to 60% on mouseout
	});
});

/* Logo thumbs fade up on mouseover (PF Family)*/
$(document).ready(function(){
	$("img.thumblogo60").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$("img.thumblogo60").hover(function(){
		$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("normal", 0.6); // This should set the opacity back to 60% on mouseout
	});
});