function imagePreload(imageName)
{
	var img = new Image();
	img.src = imageName;
	return img;
}