$(function() {
	$(".im17").css("opacity","0.5");
	$(".im17").hover(function () {
		$(this).stop().animate({
			opacity: 1.0
			}, "slow");
	},
	function () {	 
		$(this).stop().animate({
		opacity: 0.8
		}, "slow");
	});
});

