<!--
// Preload button images
function PreloadImages()
{
	ImageNames = new Array('home','services','products','contacts');
	ImagePath = 'buttons/';   // the path to the images must end with a "/"
	StdExt = '0.gif';
	SelExt = '1.gif';
	TempImage  = new Image;

	for (var i = 0; i < ImageNames.length;i++) {
		TempImage.src = ImagePath + ImageNames[i] + StdExt;
		TempImage.src = ImagePath + ImageNames[i] + SelExt;
	}
}


// -->
