<!--
function preloadImages()
{
	var preload = new Array();
	var i, a=preloadImages.arguments;
	for(i=0; i < a.length; i++)
	{
		preload [i]=new Image;
		preload [i++].src=a[i];
	}
}
function locateObject(name, d)
{
	var i,x;
	if(!d) d=document;

	x=d[name];
	for(i=0; !x && d.layers && i< d.layers.length; i++)
		x=locateObject(name, d.layers[i].document);
	return x;
}
function ImageSwap( Name, URL)
{
	var img;
	img = locateObject(Name);
	img.src = URL;
}
//-->
<!--
function animObj(objName) {
		this.objName = objName;
		this.timeoutMs = 2400;
		this.imgIndx = 0;
		this.lgImgObj = null;
		this.frames = new Array();
		return this;
	}

	animObj.prototype.setLgImgObj = function(imgObj) {
		imgObj.onload = "";
		this.lgImgObj = imgObj;
	}

	animObj.prototype.addFrame = function(lgImgSrc) {
		var frm = new _frame(lgImgSrc);
		if (frm) {
			this.frames[this.frames.length] = frm;
		}

		function _frame(lgImgObjSrc) {
			if (typeof(lgImgObjSrc) != "undefined") {
				this.lgImg = new Image();
				this.lgImg.src = lgImgSrc;
				return this;
			} else {
				return null;
			}
		}
	}

	animObj.prototype.start = function() {
		if (typeof(window.startTo) != "undefined") {
			window.clearTimeout(window.startTo);
		}

		if (this.lgImgObj) {
			this.next();
		} else {
			var toFxn = this.objName + ".start()";
			window.startTo = window.setTimeout(toFxn, this.timeoutMs);
		}
	}

	animObj.prototype.swapFrame = function() {
		this.lgImgObj.src = this.frames[this.imgIndx].lgImg.src;
	}

	animObj.prototype.next = function() {
		if (typeof(window.nextTo) != "undefined") {
			window.clearTimeout(window.nextTo);
		}

		if (this.imgIndx == (this.frames.length - 1)) {
			this.imgIndx = 0;
		} else {
			this.imgIndx++;
		}

		this.swapFrame();

		var toFxn = this.objName + ".next()";
		window.nextTo = window.setTimeout(toFxn, this.timeoutMs);
	}

	animObj.prototype.stop = function() {
		if (typeof(window.startTo) != "undefined") {
			window.clearTimeout(window.startTo);
		}

		if (typeof(window.nextTo) != "undefined") {
			window.clearTimeout(window.nextTo);
		}
	}
//-->