function fadeHover(elem){
	$(elem).stop().fadeTo("normal", 0.6); // This should set the opacity to 60% on hover
}

function fadeOut(elem){
	if($(elem).parent().attr('class') != 'current') $(elem).stop().fadeTo("normal", 1.0); // This should set the opacity back to 100% on mouseout
}
		
$(document).ready(function(){
	$(".fade").fadeTo("normal", 1.0); // This sets the opacity of the thumbs to fade down to 100% when the page loads
	$(".fade").hover( 
		function(){fadeHover($(this))}, 
		function(){fadeOut($(this))} 
	);	
});


