$(document).ready(function() {	
	// CALL ALL ELEMENTS WITH A CLASS, NOT BY AN ID!!!
	// FADE OUT ALL ELEMENTS ON START
	$(".over_thumbs").fadeTo(0, 0.01);	
	
	// FADE IN BY HOVER, FADE OUT BY LEAVE
	$(function() {
		$('.over_thumbs').hover(
			//function() { $(this).fadeTo(1000, 1.0, function(){$(this).css('filter','')}); },
			function() { $(this).fadeTo(0, 1.0, function(){$(this).css('filter','')}); },
			function() { $(this).fadeTo(0, 0.01); }
		);
	});	
});
