
	// SWAP image by reference/state
	function imgSwap(_this, _state) {
		_this.src = "images/" + _this.id + "_" + _state + ".jpg";
	}
	// LOAD page
	function loadPage(PageURL) {
		window.location.href = PageURL;
	}
	// HIDE Element by ID
	function hideEle(inID) {
		document.getElementById(inID).style.visibility = "hidden";
	}
	// SHOW Element by ID
	function showEle(inID) {
		document.getElementById(inID).style.visibility = "visible";
	}
	// REMOVE Element by ID
	function removeEle(inID) {
		document.getElementById(inID).style.display = "none";
	}
	// RESTORE Element by ID
	function restoreEle(inID) {
		document.getElementById(inID).style.display = "block";
	}
	// OPEN new Window
	function openWindow(winType, PageURL) {
		if (winType == "FeatPart") {
		// Featured Partners
			var load = window.open(PageURL,'','scrollbars=auto,menubar=no,height=400,width=400,resizable=no,toolbar=no,location=no,status=no');
		} else if (winType == "MapQuest") {
		// Directions (MapQuest)
			if (PageURL == 'STOW') PageURL = "http://www.mapquest.com/maps/map.adp?searchtype=address&country=US&addtohistory=&searchtab=home&formtype=address&popflag=0&latitude=&longitude=&name=&phone=&level=&cat=&address=1531+Commerce+Dr.&city=&state=&zipcode=44224"
			else if (PageURL = 'CANTON') PageURL = "http://www.mapquest.com/maps/map.adp?searchtype=address&country=US&addtohistory=&searchtab=home&formtype=address&popflag=0&latitude=&longitude=&name=&phone=&level=&cat=&address=8742+Cleveland+Ave.+NW&city=&state=&zipcode=44720"
			var load = window.open(PageURL,'','scrollbars=yes,menubar=no,height=600,width=600,resizable=no,toolbar=no,location=no,status=no');
		
		} else if (winType == "VideoPreview") {
		// Video Preview
			var load = window.open(PageURL,'','scrollbars=auto,menubar=no,height=350,width=420,resizable=no,toolbar=no,location=no,status=no');
		}else if (winType == "HSiPop") {
		// Video Preview
			var load = window.open(PageURL,'','scrollbars=yes,menubar=no,height=600,width=785,resizable=no,toolbar=no,location=no,status=no');
		} else {
			loadPage(PageURL)
		}
	
	}