/****************************************************************************************************************
 *     This web site was meticulously hand coded in ubuntu (linux) there are no extra tags created by a         /
 *     lame WYSIWYG editor causing the html code to be fatter then necessary. This site was coded by a         /
 *     experienced coder of 30 years.                                                                                                                /
 *                                                                                                                                                                     /
 *     This website was built under sub-contract for Websign Computers.                                                        /
 *                                                                                                                                                                     /
 *     Author: James K. Hamilton                                                                                                                       /
 *     E-mail:  james@jkhamilton.net                                                                                                                 /
 *     Website: http://www.jkhamilton.net                                                                                                          /
 *     Company: Canankee Productions                                                                                                              /
 *     Website: http://www.canankeeproductions.com                                                                                        /
 ****************************************************************************************************************/

function start() {
rolloverInit();
}

window.onload = start;

function rolloverInit() {
	for (var i=0; i<document.images.length; i++) {
		if (document.images[i].parentNode.tagName == "A") {
			setupRollover(document.images[i]);
		}
	}
}
function setupRollover(thisImage) {
	thisImage.outImage = new Image();
	thisImage.outImage.src = thisImage.src;
	thisImage.onmouseout = function() {
		this.src = this.outImage.src;
	}
	thisImage.overImage = new Image();
	thisImage.overImage.src = "images/" + thisImage.id + "_on.gif";
	thisImage.onmouseover = function() {
		this.src = this.overImage.src;
	}
}
