jQuery(function($){
	//".animacao span"
	function HoverElement(elemento, velocidade_in, velocidade_out){
		$(elemento).css("opacity","0");
		$(elemento).hover(function(){
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, velocidade_in);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, velocidade_out);
		});
	}
	
	HoverElement(".animacao span", 600, 400);
	HoverElement(".animacao2 span", 150, 200);
	HoverElement(".animacao3 span", 200, 300);
});
