
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$.preloadImages("/images/personalcolor.jpg", "/images/businesscolor.jpg", "/images/mortgagecolor.jpg");

$(document).ready(function() {
    
    $('#divb').hover(function() {
      $(this).addClass('iehoverb');
    }, function() {
      $(this).removeClass('iehoverb');
    });
    
    $('#divc').hover(function() {
      $(this).addClass('iehoverc');
    }, function() {
      $(this).removeClass('iehoverc');
    });
    
    $('#divd').hover(function() {
      $(this).addClass('iehoverd');
    }, function() {
      $(this).removeClass('iehoverd');
    });
    
});