/*****************************************************************************************/
/*****************************************************************************************/
/*Preload jQuery script - jquery_preload_images.js
Created on 26/10/09 by Jon Mackie for Psand Ltd

This script defines the preload image function. To preload image use the following method:
$.preloadImages(
    "/images/image-name.png",
    "/images/image-name.png"
);
*/
/*****************************************************************************************/
/*****************************************************************************************/
$(document).ready(function() {
  $.preloadImages = function() {
    for(var i = 0; i<arguments.length; i++){
      $("<img />").attr("src", arguments[i]);
    }
  }
});
