(function() {
  $(function() {
    $('form[action=contact]').validate();
    $('body').removeClass('nojs');
    $('.home_image .hover').css('opacity', 0.0).show();
    $('.home_image').hover(function() {
      return $(this).children('a').children('.hover').stop().fadeTo('slow', 1.0);
    }, function() {
      return $(this).children('a').children('.hover').stop().fadeTo('slow', 0.0);
    });
    $('.fancybox').fancybox({
      'overlayColor': '#000'
    });
    return $('#comment_button').click(function() {
      return $.get($(this).attr('data-form-url'), function(data) {
        return $('#comment_button').replaceWith(data);
      });
    });
  });
}).call(this);

