// jQuery Functions
var $j = jQuery.noConflict();

$j(document).ready(function() {	
	
	$j(".fade").stop().fadeTo("slow", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$j(".fade").hover(function(){
	   $j(this).stop().fadeTo(500, 1.0); // This should set the opacity to 100% on hover
    },function(){
 	   $j(this).stop().fadeTo(500, 0.5); // This should set the opacity back to 30% on mouseout
	});

});
