$(document).ready(function(){
	$("a .pic").animate({opacity: 1}, 0).hover(
		function() { $(this).stop(true).animate({opacity: .75}, {duration: 200, queue: false})},
		function() { $(this).stop(true).animate({opacity: 1}, {duration: 400, queue: false})}
	); 
});
