/*
	Preload Images.
	For Example mouseover Images in Menus etc.
	SKU
	
	Usage:
	
	$.preloadImages("image1.gif", "/path/to/image2.png","some/image3.jpg");

	Right in the Top of Your Page. Not in $.ready() or Something like that !
	
*/

jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
