$(function() {
  $(".image").click(function() {
    var image = $(this).attr("rel");
    $('#image').hide();
    $('#image').fadeIn('slow');
    $('#image').html('<img src="http://chilternstreetstudios.com/wp-content/themes/chiltern-st-studio-original/scripts/timthumb.php?src=' + image + '&amp;w=245&amp;h=245&amp;zc=1" alt="" width="245px" height="245px" />');
    return false;
	});
});

$(function() {
  $(".spaceimage").click(function() {
    var image = $(this).attr("rel");
    $('#spaceimage').hide();
    $('#spaceimage').fadeIn('slow');
    $('#spaceimage').html('<img src="http://chilternstreetstudios.com/wp-content/themes/chiltern-st-studio-original/scripts/timthumb.php?src=' + image + '&amp;w=475&amp;h=330&amp;zc=1" alt="" width="475px" height="330px" />');
    return false;
	});
});
