“use strict”;

P.when(“jQuery”, “ready”).execute(function($) {

$('.multi-column-with-image-img-area').hover(
  function() {
    if ($(this).find('.multi-column-with-image-img').src) {
      $(this).find('.multi-column-with-image-rollover-img').css('display', 'block');
    }
  },

  function() {
    $(this).find('.multi-column-with-image-rollover-img').css('display', 'none');
  });

});