﻿var DepartmentTitle = "City Clerk";
var Path = location.pathname.toUpperCase();

var DepartmentMenus = Array(
    Array("Job Listings", "/joblist.html"), 
    Array("Application Form", "/application.html"), 
    Array("Contact Info", "/contacts.html"), 
    Array("Current Employees", "/employees/"), 
    Array("Links", "/links.html")
);


function ShowDepartmentMenu(){
    for(var i=0; i<DepartmentMenus.length; i++){
        if(Path.match(DepartmentMenus[i][1].toUpperCase())){
            document.write('<div style=\"font-weight: bold;\"><a href=\"' + DepartmentMenus[i][1] + '\">' + DepartmentMenus[i][0] + '</a></div>');
        }
        else{
            if(Path.indexOf('POSITIONS') > 0 && i==0){
                document.write('<div style=\"font-weight: bold;\"><a href=\"' + DepartmentMenus[i][1] + '\">' + DepartmentMenus[i][0] + '</a></div>');
            }
            else{
                document.write('<div><a href=\"' + DepartmentMenus[i][1] + '\">' + DepartmentMenus[i][0] + '</a></div>');
            }
        }
    }
}