$(function() {
$('#cottageThumbCaption').append('Click an image to enlarge');
$(".cottageImage").click(function() {
var image = $(this).attr("rel");
$('#cottageImage').hide();
$('#cottageImage').fadeIn('slow');
$('#cottageImage').html('<img src="' + image + '"/>');
return false;
}); });
