 function CQ_preloadImages() { //v3.0
  if (document.images) {
    if (typeof(document.CQ) == 'undefined'){
      document.CQ = new Object();
    }
    document.CQ.loadedImages = new Array();
    // Loop through all the arguments.
    var argLength = CQ_preloadImages.arguments.length;
    for(arg=0;arg<argLength;arg++) {
      // For each arg, create a new image.
      document.CQ.loadedImages[arg] = new Image();
      // Then set the source of that image to the current argument.
      document.CQ.loadedImages[arg].src = CQ_preloadImages.arguments[arg];
    }
}
}
