$(window).load(function(){
	
	$("a.hoverbutton").hover(function(){
		$("img", this).stop().animate({ "opacity": 0.4 }, 350);
		}, function() {
		$("img", this).stop().animate({ "opacity": 1 }, 250);
	});

});

