// main menu item is the one with 3 elements - folder of submenu (if none, use a space), menu text, menu path// sub menu item is the one with 2 elements - sub menu text, sub menu path// If you are using quotations (") or an ampersand (&) you will need to put a backslash (\) in front of it.arrMenu = new Array (	new Array(		new Array("about"), //About Us section		new Array("Intro", "/about/default.php", "default"),		new Array("Management Team", "/about/management/default.php", "management"),		new Array("Jobs", "/about/jobs/default.php", "jobs"),		new Array("Studio Notes", "/about/notes/default.php", "notes"),		new Array("Contact Us", "/about/contact/default.php", "contact")	),		new Array(		new Array("what"), //What We Do section		new Array("Overview", "/what/default.php", "default"),		new Array("Integrated", "/what/integrated/default.php", "integrated"),		new Array("Publications", "/what/publications/default.php", "publications"),		new Array("Interactive", "/what/interactive/default.php", "interactive"),			new Array("Content Management", "/what/interactive/content/default.php"),			new Array("Technology", "/what/interactive/tech/default.php"),		new Array("Branding", "/what/branding/default.php", "branding"),		new Array("Events", "/what/events/default.php", "events"),			new Array("Large Format Print Pricing List", "/what/events/omni_price_list/default.php"),			new Array("Display Product Overview", "/what/events/product_overview/default.php"),		new Array("Content", "/what/content/default.php", "content"),		new Array("Etc\.", "/what/etc/default.php", "etc")	),			new Array(		new Array("how"), //How We Work section		new Array("Overview", "/how/default.php", "default"),		new Array("Client Service", "/how/service/default.php", "service"),		new Array("Print Management", "/how/management/default.php", "management"),		new Array("Quality Assurance", "/how/quality/default.php", "quality")	),		new Array(		new Array("portfolio"), //Portfolio section		new Array("Overview", "/portfolio/default.php", "default"),		new Array("Our Work", "/portfolio/ourwork/default.php", "ourwork"),		new Array("Client List", "/portfolio/clients/default.php", "clients")			),	new Array(		new Array("clients") //Client Resources section	)	);