$(document).ready(function () {
	$('a.thumbnail').click(function (e) {
		$('.gallery-target img').fadeOut(250).queue(function() { $(this).remove(); unqueue(); });
		$('.gallery-target').height('0px');
		var imgframe = $('.gallery-target', $(this).parent());
		var img = $(document.createElement('img'));
		img.attr('src', $(this).attr('href'));
		img.attr('style', 'display: none;');
		imgframe.append(img);
		imgframe.height('510px');
		img.fadeIn();
		
		e.preventDefault();
	});
});

