$(document).ready(function() {    
	$('#photo_list img').each(function() {
		$(this).stop().animate({ opacity: 0.70 }, 100);
		$(this).hover(function() {
			$(this).stop().animate({ opacity: 1.0 }, 100);
		},
		function() {
			$(this).stop().animate({ opacity: 0.70 }, 100);
		});
	});
	
	
	$("#photo_list a").hoverIntent(function() {
		$(this).next("span").animate({opacity: "show"}, "fast");
	}, function() {
		$(this).next("span").animate({opacity: "hide"}, "fast");
	});
});
