$(document).ready(function(){ 
	$('.clic').hover(function() {
		$(this).css({'cursor':'pointer'});
		$(this).stop().animate({'opacity':0.6}, 200);
	}, function(){ 
		$(this).stop().animate({'opacity':1}, 200);
	});
});
