/*
Preloads images on a website.

Call this file from html file and add following line to preload images:


$.preloadImages("image1.gif", "/path/to/image2.png", "some/image3.jpg");

*/

jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
  //alert('all preloaded');
}