jQuery(document).ready(function($){	
	
				$('#wrapper .btn_fale').find('a').mouseover(					
					function(e) {					
					 $(this).stop().animate({
						opacity:0					
					 }, 1000, "easeOutBack");
				});
				
				$('#wrapper .btn_fale').find('a').mouseout(
					function(e) {
						 $(this).stop().animate({opacity:1}, 800, "easeOutQuart");
				});
				
			
});
