//Controlls the Homepage Banner and All the Consultant images.

$(document).ready(function() {
  $('a.rollover').removeClass('rollover noClass').addClass('rollover-jq').append('<span class="hover"></span>').each(function () {
    var $span = $(this).children('span.hover').css('opacity', 0);
    $(this).hover(function () {
      $span.stop().fadeTo(350, 1);
    },
    function () {
      $span.stop().fadeTo(1500, 0);
    });
  });
});

