// ROLL OVER FUNCTIONS
		function rollOver(image, sfx) {
			var active = image.parentNode.getAttribute("activelink");
			if (active=="" || active==null) {
				var imgSrc = image.src;
				var imgFile = new Array();
				var imgFile = imgSrc.split("/");
				var ix = imgFile.length-1;
				var myRegExp = new RegExp("\\..+", "gi");
				var imgExt = myRegExp.exec(imgFile[ix]);
				var newImgSrc = imgSrc.replace(imgExt, sfx+imgExt);
				image.src = newImgSrc;
			} else {
				image.parentNode.removeAttribute("href");
			}
		}

		function rollOut(image, sfx) {
			var active = image.parentNode.getAttribute("activelink");
			if (active=="" || active==null) {
				var imgSrc = image.src;
				var imgFile = new Array();
				var imgFile = imgSrc.split("/");
				var ix = imgFile.length-1;
				var myRegExp = new RegExp("\\..+", "gi");
				var imgExt = myRegExp.exec(imgFile[ix]);
				var newImgSrc = imgSrc.replace(sfx+imgExt, imgExt);
				image.src = newImgSrc;
			} else {
				image.parentNode.removeAttribute("href");
			}
		}
////////////


