$(document).ready(function() {
	$('.gallery ul li a').click(function() {
		var imgSrc = jQuery(this).attr('href');
		var imgAlt = jQuery(this).attr('title');
		var img = new Image();
		$(img).hide();

		$('.gallery ul li.active').removeClass('active');

		$(this).parent().addClass('active');
		
		$('.gallery .image').addClass('loading').find('img').fadeOut('normal', function() {
			$(img).load(function() {
				$('.gallery .image').animate({height: img.height+40}).removeClass('loading');
				$('.gallery .caption').html('<h4>' + imgAlt + '</h4>');
				$(this).appendTo('.gallery .image').fadeIn();
			}).error(function() {

			}).attr({
				src: imgSrc,
				alt: imgAlt,
				title: imgAlt
			});

			$('.gallery .image').empty();
		});
		
		return false;
	});

	$('.gallery ul li:first a').click();
});
