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