// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['OUR FIRM', '/firm/index.php', null,
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Job Opportunities', '/firm/careerOpportunities/index.php'],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Practice Areas', '/firm/practiceAreas.php', null],
        ['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Professional Profiles', '/firm/professionalProfiles/index.php', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">SCA in the News', '/faqs/resources/SCAintheNews.php'],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Web Links', '/faqs/resources/weblinks.php'],
     ],
	['OUR CASES', '/cases/index.php', null,
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Cases', '/cases/index.php'],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Investigations', '/cases/Investigations.php'],
     ],
	['FAQs', '/faqs/index.php', null],
	['CONTACT US', '/contact/officeLocation/index.php', null,
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Appointments', '/contact/officeLocation/appointmentAvailability.php', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Directions to Us', '/contact/officeLocation/directionsToOurOffice.php ', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Office Location', '/contact/officeLocation/index.php', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Submit a Claim', '/contact/submitaClaim.php', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Why Contact Us?', '/contact/WhyContactUs.php', null],
	  ]

];