$(document).ready(function(){
	$(".toFade a").fadeTo("400", 0.4); // This sets the opacity of the thumbs to fade down when the page loads

	$(".toFade a").hover(function(){
		$(this).fadeTo("400", 1.0); // This sets the opacity to 100% on hover
	},function(){
		$(this).fadeTo("400", 0.4); // This sets the opacity on mouseout
	});
});