
	$(function() {
	
		$('a.image-swap').click(function(e) {
			e.preventDefault();
			
			var src = $(this).children('img').attr('src');
			$(this).prevAll('.animation-holder').children('.image-holder').fadeOut('slow', function() {
				$(this).children('img')
					.attr('src', src).end()
				.fadeIn('slow');
			});
		
		});
	
	});