jQuery(function(){
	jQuery(".thumbs img").fadeTo("slow", 0.4); // LOAD @ 40%
	jQuery(".thumbs img").hover(function(){
		jQuery(this).fadeTo("slow", 1.0); // OVER 100%
	},function(){
		jQuery(this).fadeTo("slow", 0.4); // OUT 40%
	});

	jQuery(".gallery img").fadeTo("slow", 0.6);
	jQuery(".gallery img").hover(function(){
		jQuery(this).fadeTo("slow", 1.0); // OVER 100%
	},function(){
		jQuery(this).fadeTo("slow", 0.6); // OUT 40%
	});
});