$(document).ready(function() {

	$("a img").hover(
		function() { $(this).stop(); $(this).animate({ opacity:0.65 }, 150); },
		function() { $(this).stop(); $(this).animate({ opacity:1 }, 250);}
	);
});
