$(function(){
  
	//recursiveFunction();
	$('div.thumbnailLink').hide();

	(function hidenext(jq){
	    jq.eq(0).fadeIn('5000', function(){
	        (jq=jq.slice(1)).length && hidenext(jq);
	    });
	})($('div.thumbnailLink'))
	
	$(".thumbnailLink").hover(function(){
		$(this).fadeTo("fast", 0.60); // This should set the opacity to 60% on hover
			},function(){
				$(this).fadeTo("slow", 1); // This should set the opacity back to 100% on mouseout
	});
	
	

});
 
 
function recursiveFunction(){
}