// JavaScript Document
$(document).ready(function(){ 
						   
                    $(this).find('ul.hover_block1 img').css('opacity','0.0');
                 });



$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 0% when the page loads
			$(this).find('ul.hover_block1 img').fadeTo({duration: 0000}, 0.0);
		
		
			
			$('ul.hover_block1 li').hover(function(){
				$(this).find('img').fadeTo("medium", 1.0);// This sets the opacity to 100% on hover
			}, function(){
				$(this).find('img').stop().fadeTo("slow", 0.0);// This sets the opacity back to 0% on mouseout
			});
	});
