// menu_items.js file
// comments block here

var MENU_ITEMS =[
	["About Us", null,
		['Homepage', "../index.php"],
		['About Us', "../history.php"],
		['Our Facilities', "../facilities.php"],
		['Our Staff', "../staff.php"],
		['Employment', "../jobs.php"],
		['Contact Us', "../contact.php"],
	],
	
	["Products", null,
		['Corks', "../products/corks.php"],
		['Capsules', "../products/capsules.php"],
		['Metal Closures', "../products/closures.php"],
		['Wax', "../products/wax.php"],
		['Wooden Boxes', "../products/boxes.php"],
	],
	
	["Branding", null,
		['Ink Branding', "../branding/ink.php"],
		['Fire Branding', "../branding/fire.php"],
	],
	
	["Orders", "../orders.php"],
	
	["News", "../news.php"],
	
	["Links", "../links.php"],
	
	["Contact Us", "../contact.php"],
];
