(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("/images/gnav_home_on.png", "/images/gnav_about_on.png", "/images/gnav_cafe_on.png", "/images/gnav_shop_on.png", "/images/gnav_news_on.png", "/images/gnav_access_on.png", "/images/gnav_contact_on.png");
