$(function () {

	$('#gallery a').click(function (e) {
		e.preventDefault();

		// rip the href out
		
		var href = $(this).attr('href');

		// set the image's src to href

		$('.active-image-loader').show();

		$('#active-image').attr('src', href);

		$('#active-image').load(function () {
			$('.active-image-loader').hide();
		});
	});
});

