//
// cashimages.js
//
// 10 august 2006
//
// writen by Mihail Zimin
//
//
// bring into memory (cash) images
//
//
//


var images;


function cashImages()
{

	images = new Array();

	var sources = new Array(
					"images/035.jpg",
					"images/036.gif",
					"images/037.gif",
					"images/044.gif",
					"images/109.gif",
					"images/110.gif"
				);

	for(var i=0; i < sources.length; i++)
	{
		images[i] = document.createElement("img");
		images[i].setAttribute("src", sources[i]);
	}

}