(function($) {
Drupal.behaviors.msc = {
  attach: function(context, settings) {
    // Make logo click through to home page.
    $('#block-marinesc-msc-logo').click(function() {
      window.location = '/';
    });

    // Reveal the info block for slideshow images on mouseover.
    $('.views-slideshow-cycle-main-frame-row-item').hover(
      function () {
        $(this).children('.views-field-title').animate({
          top: 0
        }, 200);
      },
      function () {
        $(this).children('.views-field-title').animate({
          top: -50
        }, 200);
      }
    );
  }
}
})(jQuery);;

