var menuProjects = MultiDimensionalArray(3,2);
menuCompany[0][0] = "Introduction";
menuCompany[0][1] = "company_intro.jsp";
menuCompany[1][0] = "Current Projects";
menuCompany[1][1] = "C:\Documents and Settings\B Balling\Desktop\FCC Website\projects\currentprojects\currentprojects.html";
menuCompany[2][0] = "Completed Projects";
menuCompany[2][1] = "C:\Documents and Settings\B Balling\Desktop\FCC Website\projects\completedprojects\completedprojects.html";


var menuServices = MultiDimensionalArray(4,2);
menuServices[0][0] = "Introduction";
menuServices[0][1] = "solutions_intro.jsp";		// Links to pages
menuServices[1][0] = "Construction Management";
menuServices[1][1] = "C:\Documents and Settings\B Balling\Desktop\FCC Website\services\constructionmanagement\cm.html";
menuServices[2][0] = "Design-Build";
menuServices[2][1] = "C:\Documents and Settings\B Balling\Desktop\FCC Website\services\designbuild\designbuild.html";
menuServices[3][0] = "General Contracting";
menuServices[3][1] = "C:\Documents and Settings\B Balling\Desktop\FCC Website\services\generalcontracting\contracting.html";

var menuSite = MultiDimensionalArray(11,2);
menuSite[0][0] = "Home";
menuSite[0][1] = "home.jsp";
menuSite[1][0] = "<br>";
menuSite[1][1] = "";
menuSite[2][0] = "History";
menuSite[2][1] = "history.jsp";
menuSite[3][0] = "<br>";
menuSite[3][1] = "";
menuSite[4][0] = "Services";
menuSite[4][1] = menuServices;
menuSite[5][0] = "<br>";
menuSite[5][1] = "";
menuSite[6][0] = "Projects";
menuSite[6][1] = menuProjects;
menuSite[7][0] = "<br>";
menuSite[7][1] = "";
menuSite[8][0] = "Testimonials";
menuSite[8][1] = "clients.jsp";
menuSite[9][0] = "<br>";
menuSite[9][1] = "";
menuSite[10][0] = "Contact Us";
menuSite[10][1] = "contact.jsp";


