/*
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
*/

jQuery.preload = function()
{
	jQuery.each (arguments,function (e)
	{
		jQuery ('<img src="' + this + '" />');
	});
}

