/*-------------------------------------------------------------------------------------------------------*/
var objCount = 1;
var currPosition = 1;
var arrImg = new Array();
/*-------------------------------------------------------------------------------------------------------*/
function preload(thisImage) {  
	arrImg[objCount] = new Image();
	arrImg[objCount].src = thisImage;
	objCount++;
}
/*-------------------------------------------------------------------------------------------------------*/
function swapImg(thisImage, thisPosition) {
	document.images['mySwapImg'].src = thisImage;
	document.getElementById('imglink' + currPosition).className = 'out';
	document.getElementById('imglink' + thisPosition).className = 'on';
	currPosition = thisPosition;
}
/*-------------------------------------------------------------------------------------------------------*/
function showImg(thisImage) {document.images['mySwapImg'].src = thisImage;}
/*-------------------------------------------------------------------------------------------------------*/
function hideLinkFocus() {  
	if (document.all) {for (i = 0; i < document.links.length; i++) {document.links[i].hideFocus = true;}}
}
/*-------------------------------------------------------------------------------------------------------*/

