(function() {
  $(function() {
    $('#nav a').click(function(ev) {
      ev.preventDefault();
      $("#nav a").removeClass('active');
      $(this).addClass('active');
      return $("#info article").css({
        height: 0
      }).filter(this.hash).css({
        height: "auto"
      });
    });
    $('#info .close').click(function(ev) {
      ev.preventDefault();
      $("#nav a").removeClass('active');
      return $("#info article").css({
        height: 0
      });
    });
    $('#thankyou').append('<a href="#" id="close">X</a>').bind({
      click: function(e) {
        e.preventDefault();
        return $('#thankyou').remove();
      }
    });
    setTimeout((function() {
      return $('#thankyou').remove();
    }), 3000);
    if (!$('body').hasClass("homepage")) {
      $('#gallery a').fancybox();
      return $('#gallery ul .more').hide().parent().prev().append('&nbsp;<a href="#" class="moreimages">click here for more images...</a>').bind({
        click: function(e) {
          e.preventDefault();
          return $(this).next('ul').find('.more').toggle();
        }
      });
    }
  });
}).call(this);

