function resetImages(imgName,addPath) {
	if (!document.layers || !addPath) {
		addPath = "";
	}
	MM_swapImage('checkin','',addPath + 'images/checkinoff.gif',1);
	MM_swapImage('concepts','',addPath + 'images/conceptsoff.gif',1);
	MM_swapImage('case','',addPath + 'images/caseoff.gif',1);
	MM_swapImage('atwork','',addPath + 'images/atworkoff.gif',1);
	MM_swapImage('faq','',addPath + 'images/faqoff.gif',1);
	MM_swapImage('practice','',addPath + 'images/practiceoff.gif',1);
	MM_swapImage('checkout','',addPath + 'images/checkoutoff.gif',1);
	MM_swapImage('resources','',addPath + 'images/resourcesoff.gif',1);
	if(imgName) {
		MM_swapImage(imgName,'',addPath + 'images/' + imgName + 'there.gif',1);
	}
}

function swapTest(imgName,imgLoc,num) {
	currentSrc = document[imgName].src;
	if (currentSrc.substring(currentSrc.length-9,currentSrc.length) != "there.gif") {
		MM_swapImage(imgName,'',imgLoc,num);
	}
}

function restoreTest(imgName) {
	currentSrc = document[imgName].src;
	if (currentSrc.substring(currentSrc.length-9,currentSrc.length) != "there.gif") {
		MM_swapImgRestore();
	}
}
