jQuery(function($) {
    $('ul.nav a:path').addClass('active');
});

jQuery(function($) {
    $('.gal-copy, .gal-button').hide();

    $('.gal-item').hover(
      function () {
        $(this).children('.gal-button').fadeIn();
      }, 
      function () {
        $(this).children('.gal-button').fadeOut();
      }
    );

    $('.gal-button').toggle(
      function () {
        $(this).siblings('.gal-copy').toggle();
        $(this).attr('src','/_/i/bttn_close.png');
        var newBlehWidth = $(this).parent().parent().width() + 260;
        $(this).parent().parent().width(newBlehWidth);
      },
      function () {
        $(this).siblings('.gal-copy').toggle();
        $(this).attr('src','/_/i/bttn_read-more.png');
        var newBlehWidth = $(this).parent().parent().width() - 260;
        $(this).parent().parent().width(newBlehWidth);
      }
    );
});
