$(document).ready(function(){
						   //$("a").fadeTo("slow", 1); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("a").hover(function(){
						   		$(this).fadeTo("fast", 0.3);
								$(this).fadeTo("fast", 1);
						   },function(){
						   		$(this).fadeTo("fast", 1);
							   	});
						   });