// All credit to Richard Carpenter
// http://www.hv-designs.co.uk/2010/01/13/learn-how-to-add-a-jquery-fade-in-and-out-effect/

$(function(){
	$(".latest_img").css("opacity", "0.5");
	$(".latest_img").hover(function () {
		$(this).stop().animate( {
			opacity: 1.0
		}, "slow");
	},
	
	function () {
		$(this).stop().animate({
			opacity: 0.5
		}, "slow");
	});
});

