//this is the array database for the chiro menu
//it is used in conjuction with the cascade.js
//it returns a global array value for the menu links

function buildLeftMenu(){
	var menuArray

	menuArray = new Array ()

    menuArray[0] = new Array ("Adoption","Adoption.html")
    menuArray[1] = new Array ("Auto Accidents","accident.html")
    menuArray[2] = new Array ("Business","business.html")
    menuArray[3] = new Array ("Child Custody","ChildCustody.html")
    menuArray[4] = new Array ("Civil Rights","CivilRights.html")
    menuArray[5] = new Array ("Construction","Construction.html")
    menuArray[6] = new Array ("Consumer Protection","ConsumerProtection.html")
    menuArray[7] = new Array ("Contracts","Contracts.html")
    menuArray[8] = new Array ("Disability Law","DisabilityLaw.html")
    menuArray[9] = new Array ("Discrimination","Discrimination.html")
    menuArray[10] = new Array ("Divorce","Divorce.html")
    menuArray[11] = new Array ("Elections","Elections.html")
    menuArray[12] = new Array ("Environmental","Environmental.html")
    menuArray[13] = new Array ("Family Law","FamilyLaw.html")
    menuArray[14] = new Array ("Government Relations","GovernmentRelations.html")
    menuArray[15] = new Array ("Health Care","HealthCare.html")
    menuArray[16] = new Array ("Insurance","Insurance.html")
    menuArray[17] = new Array ("Intellectual Property","IntellectualProperty.html")
    menuArray[18] = new Array ("Labor & Employment","Employment.html")
    menuArray[19] = new Array ("Litigation","Litigation.html")
    menuArray[20] = new Array ("Media Law","MediaLaw.html")
    menuArray[21] = new Array ("Medical Malpractice","MedicalMalpractice.html")
    menuArray[22] = new Array ("Personal Injury","injury.html")
    menuArray[23] = new Array ("Professional Malpractice","ProfessionalMalpractice.html")
    menuArray[24] = new Array ("Real Estate and Property","RealEstateandProperty.html")
    menuArray[25] = new Array ("Tax","Tax.html")
    menuArray[26] = new Array ("Trusts","Trusts.html")
    menuArray[27] = new Array ("Wills and Estates","WillsandEstates.html")


	return menuArray
}

