/**
 * jQuery-Plugin "preloadCssImages"
 * by Scott Jehl, scott@filamentgroup.com
 * http://www.filamentgroup.com
 *
 * .......ah screw that complicated piece of junk preload function by Scott
 *
**/ 
 
 
 jQuery.preloadImages = function()
 {
   for(var i = 0; i<arguments.length; i++)
   {
     jQuery("<img>").attr("src", arguments[i]);
   }
}