$(function(){
	$('a[class="amazonlink"]').each(function(){
		$(this).hover(
			function(){
				$('img', this).css({opacity:0.8}).css({borderColor:'#a33f57'});
				$(this).prev().css({background:'#a33f57'});
			},
			function(){
				$('img', this).css({opacity:1.0}).css({borderColor:'#3f5fa3'});
				$(this).prev().css({background:'#3f5fa3'});
			}
		);
	});
});

