function checkPage(){
	var mID;
	var sPath = window.location.pathname;
	//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	//alert(sPage);
	
	switch (sPage){
		case "index.html": 
		case "home.html": 
			mID = "mm7";
		break;
		case "products-infinity.htm":
		case "products-equinox-logger.htm":
		case "products-equinox-av-streaming.htm":
		case "products-library-management-system.htm":
		case "products-harris.htm":
			mID = "mm1";
		break;
		case "solutions-business.htm":
		case "solutions-elections.htm":
		case "solutions-sports.htm":
		case "solutions-weather.htm":
			mID = "mm2";
		break;
		case "clientele-infinity.htm":
		case "clientele-equinox.htm":
		case "clientele-equinox-streaming.htm":
		case "clientele-harris.htm":
		case "clientele-lib.htm":
		case "clientele-others.htm":
			mID = "mm3";
		break;
		case "careers.htm": 
			mID = "mm6";
		break;
		case "downloads-brochures.htm": 
		case "downloads-updates.htm": 
			mID = "mm5";
		break;
		case "contact.htm": 
			mID = "mm4";
		break;
	}
	mainmenuiLI = document.getElementById(mID);
	mainmenuiLI.className = 'showOver';
}
