
(function($){ 

$(function(){
	
	
	$(".opa").mouseover(function(){
  		$(this).stop(true, false).animate({"opacity": "0.85"}, {duration:200})
	});
	
	$(".opa").mouseout(function(){
  		$(this).stop(true, false).animate({"opacity": "1.0"}, {duration:200})
	});
	
	
});

}(jQuery)); 





