// Showing larger images of the book preview thumbnails

$(function() {

	$('#illustrations a').click(function() {
		$('#largeImage').remove();
		var href = $(this).attr('title');
		$('#show-image').show();
		$('<img id="largeImage" src="' + href + '" alt="big image" />').appendTo('#show-image');
	});
});	

