


function ChangeClass(strElementID, strClass){
//this is the function that is called by the code that is in the page which
//changes the state of the css subnav (selected/unselected)
 if (document.getElementById){
    var el = document.getElementById(strElementID);
    
    if (el != null)
		el.className = strClass;
 }
}
