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

function preload_image( img )
{
	var a = new Image();
	a.src = this;
	return a;
}