

$(document).ready(function() {
	
	$("#collection a[rel^='shadowbox'] img").hover(
		function(){
			$("#collection a[rel^='shadowbox'] img").stop().animate({
				'opacity': 0.5
			}, 	'slow');
			$(this).stop().animate({
				'opacity': 1
			}, 	'fast');
		},
		function(){
			$("#collection a[rel^='shadowbox'] img").stop().animate({
				'opacity': 1
			}, 	'slow');
		}
	);
});

