// JavaScript Document (created by SPP 02/08/06, updated 12/12/06 to load without "onLoad" function)
// Changes the class of a selected id, used for highlighting menu selections from included menus

function change(id,className) {
    var identity = document.getElementById(id);
    if (identity != null) {
        identity.className = className;
    } else {
        identity = "none";
    }
}

