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

