// JavaScript Document

//Construct the navigation menus.

var navBarItems = 
[
	{
		id: "home",
		text: "HOME",
		href: "index.php",
		menu: null
	},
	{
		id: "services",
		text: "SERVICES",
		href: "page_services_services.php",
		menu: 
		[
			{
				href: "page_services_customSoftware.php",
				text: "Custom Software"
			},
			{
				href: "page_services_strategicPlanning.php",
				text: "Strategic Planning"
			},
			{
				href: "page_services_ssEngineering.php",
				text: "Software and System Engineering"
			},
			{
				href: "page_services_businessTraining.php",
				text: "Business Training"
			}
		]
	},
	{
		id: "federalGovernment",
		text: "FEDERAL GOVT",
		href: "page_fedGovt_fedGovt.php",
		menu:
		[
			{
				href: "page_fedGovt_summary.php",
				text: "Competencies Summary"
			},
			{
				href: "page_fedGovt_team.php",
				text: "Team with MSIS"
			}
		]
	},
	{
		id: "seaportE",
		text: "SEAPORT-E",
		href: "page_seaportE_seaportE.php",
		menu:
		[
			{
				href: "page_seaportE_taskOrders.php",
				text: "Task Orders and Technical Instructions"
			},
			{
				href: "page_seaportE_MSISPOC.php",
				text: "MSIS POCs and Capabilities"
			},
			{
				href: "page_seaportE_teamMembers_teamMembers.php",
				text: "MSIS Team Members: POCs and Capabilities"
			},
			{
				href: "page_seaportE_experience.php",
				text: "MSIS and Team: Experience by Functional Area"
			},
			{
				href: "page_seaportE_QA.php",
				text: "MSIS Quality Assurance Program"
			}
		]
	},
	{
		id: "aboutUs",
		text: "ABOUT US",
		href: "page_aboutUs_aboutUs.php",
		menu:
		[
			{
				href: "page_aboutUs_aboutUs.php",
				text: "Company Background"
			},
			{
				href: "page_aboutUs_EmployeeProfile.php",
				text: "Employee Profiles"
			},
		]
	},
	{
		id: "contactUs",
		text: "CONTACT US",
		href: "page_contactUs_contactUs.php",
		menu: null
	},
	{
		id: "employment",
		text: "CAREERS",
		href: "page_employment_employment.php",
		menu: 
		[
			{
				href: "page_employment_openings_openings.php",
				text: "Job Openings"
			}
		]
	}
];

constructNavBar(navBarItems);

//Preload images for rollover effects.
loadImg("images/fedGovt_hover.jpg");
loadImg("images/professionalWoman_hover.jpg");
loadImg("images/webSites_hover.jpg");
loadImg("images/network_hover.jpg");
