jQuery(document).ready(function($){
			
				var ng = $('.anim');
				
				$(ng).mouseover(					
					function(e) {					
					 $(this).stop().animate({
						opacity:.8					
					 }, 1000, "easeOutBack");
				});
				
				$(ng).mouseout(
					function(e) {
						 $(this).stop().animate({opacity:1}, 800, "easeOutQuart");
				});

}); //end ready