$(document).ready(function(){

		$("img.flickr_photo").hover(function() {
		$(this).stop().animate({ opacity : "0.4" }, 200);
		}, function() {
		$(this).stop().animate({ opacity : "1" }, 200);
		});
		$("img.customfade").hover(function() {
		$(this).stop().animate({ opacity : "0.4" }, 200);
		}, function() {
		$(this).stop().animate({ opacity : "1" }, 200);
		});
});
