// JavaScript Document

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

