<!--

/***********************************************
* Copyright Intechnia Limited
* Code may not be re-used without explicit
* consent from Intechnia Limited
* http://www.intechnia.co.uk
***********************************************/

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function preloadImages() {
	if (document.images) {
		image_01 = newImage("images/home/home_page_01.jpg");
		//image_02 = newImage("_images/sample/eg.gif");
	}
}
//-->

