(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)

jQuery.preLoadImages("/i/home/blog_on.png", "/i/home/contact_on.png", "/i/home/enhancements_on.png", "/i/home/illustration_on.png", "/i/home/shop_on.png");
