jQuery(function($){

	function HoverElement(elemento, velocidade_in, velocidade_out){
		$(elemento).stop().fadeTo(0, 0).show();
		$(elemento).hover(function(){
			$(this).stop().fadeTo('slow', 1).show();
		},
		function () {
			$(this).stop().fadeTo('slow', 0).show();
		});
	}
	
	HoverElement(".animacao span", 200, 200);
	HoverElement(".animacao2 span", 350, 300);
	HoverElement(".animacao3 span", 200, 300);
});
