// 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', 'http://www.scalaw.com/firm/index.php', null,
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Job Opportunities', 'http://www.scalaw.com/firm/careerOpportunities/index.php'],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Practice Areas', 'http://www.scalaw.com/firm/practiceAreas.php', null],
        ['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Professional Profiles', 'http://www.scalaw.com/firm/professionalProfiles/index.php', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">SCA in the News', 'http://www.scalaw.com/faqs/resources/SCAintheNews.php'],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Web Links', 'http://www.scalaw.com/faqs/resources/weblinks.php'],
     ],
	['OUR CASES', 'http://www.scalaw.com/cases/index.php', null,
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Cases', 'http://www.scalaw.com/cases/index.php'],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Investigations', 'http://www.scalaw.com/cases/Investigations.php'],
     ],
	['FAQs', 'http://www.scalaw.com/faqs/index.php', null],
	['CONTACT US', 'http://www.scalaw.com/contact/officeLocation/index.php', null,
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Appointments', 'http://www.scalaw.com/contact/officeLocation/appointmentAvailability.php', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Directions to Us', 'http://www.scalaw.com/contact/officeLocation/directionsToOurOffice.php ', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Office Location', 'http://www.scalaw.com/contact/officeLocation/index.php', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Submit a Claim', 'http://www.scalaw.com/contact/submitaClaim.php', null],
		['<img src="/images/menu_brown_arrowRight.gif" width="1" height="9">Why Contact Us?', 'http://www.scalaw.com/contact/WhyContactUs.php', null],
	  ]

];
