$(function() {
// OPACITY OF ELEMENT SET TO 30%
$(".sampleThmubs img").css("opacity","0.3");
		
// ON MOUSE OVER
$(".sampleThmubs img").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "fast");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 30%
$(this).stop().animate({
opacity: 0.3
}, "slow");
});
});


$(function() {
// Overides fade for active element
$(".sampleThmubs .active img").css("opacity","1.0");
		
// ON MOUSE OVER
$(".sampleThmubs .active img").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "fast");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 1.0
}, "fast");
});
});
