$(function() {
	$('.gallery a').click(function(e) {
		e.preventDefault();
		that = $(this);
		$(e.target).parentsUntil('.gallery').find('.left').animate({opacity: 0.0}, 500, function(e2) {
			$(e.target).parentsUntil('.gallery').find('.left img').attr('src', that.attr('href')).bind("load", function() {
				$(e.target).parentsUntil('.gallery').find('.left').html('').append($(this));
				$(e.target).parentsUntil('.gallery').find('.left').animate({opacity: 1.0}, 1000);
			})
			.each(function() {
				if(this.complete && jQuery.browser.msie)
					$(this).trigger("load");
			});
		});
	});
});

