$(document).ready(function(){
$(".colaboradores img").fadeTo("slow", 1.0);
$(".colaboradores img").hover(function(){
$(this).fadeTo("slow", 0.3);
},function(){
$(this).fadeTo("slow", 1.0);
});
});


