jQuery(function() {
// OPACITY OF BUTTON SET TO 100%
jQuery("a.hrefthumb").css("opacity","1");
		
// ON MOUSE OVER
jQuery("a.hrefthumb").hover(function () {
										  
	// SET OPACITY TO 50%
	jQuery(this).stop().animate({
		opacity: 0.5
		}, "slow");
	},
		
// ON MOUSE OUT
	function () {
			
	// SET OPACITY BACK TO 50%
	jQuery(this).stop().animate({
		opacity: 1
		}, "slow");
	});
});




