﻿// Alters the active subnav item's class and removes its href attribute

function setActiveNavOn(itemId) {
	var obj = document.getElementById(itemId);
	obj.className += "on";
	obj.removeAttribute("href");
}
