//Simple plugin for jquery to preload images
//example:
//$.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]);
  }
}