(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/bg.jpg",
    "images/blank.gif",
    "images/content-big-middle.png",
    "images/content-big-top-bg2.png",
    "images/content-medium-bottom-bg.png",
    "images/content-medium-middle.png",
    "images/content-medium-middle-bg.png",
    "images/content-medium-top-bg2.png",
    "images/content-small-bottom-bg.png",
    "images/content-small-top-bg2.png",
    "images/hide-scroller-png.png",
    "images/menu-bg.png",
    "images/menu-left.png",
    "images/menu-right.png",
    "images/submenu-bottom.png",
    "images/submenu-bottom-bg.png",
    "images/submenu-middle.png",
    "images/submenu-middle-bg.png",
    "images/submenu-top.png",
    "images/submenu-top-bg.png",
    "images/text-scroller-bg.png",
    "images/header-start.jpg"  
    );