//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 buildMenu(){
	var menuArray
	menuArray = new Array ()

	menuArray[0] = new Array ("Injury Law 101", "flcontent/pi_over_t.asp")
	menuArray[1] = new Array ("Automobile Accidents", "flcontent/acci_over_t.asp")
	menuArray[2] = new Array ("Spinal Cord Injury", "flcontent/sci_over_t.asp")
	menuArray[3] = new Array ("Cerebral Palsy", "flcontent/cp_over_t.asp")
	menuArray[4] = new Array ("Traumatic Brain Injury", "flcontent/tbi_over_t.asp")
	menuArray[5] = new Array ("Pesticide Exposure", "flcontent/pesticide_over_t.asp")
	menuArray[6] = new Array ("Toxic Molds", "flcontent/mold_over_t.asp")
	menuArray[7] = new Array ("Medical Malpractice", "flcontent/malp_over_t.asp")
	menuArray[8] = new Array ("Wrongful Death", "flcontent/death_over_t.asp")
	menuArray[9] = new Array ("Nursing Home Abuse", "flcontent/nursing_over_t.asp")
	menuArray[10] = new Array ("Dog Bites", "flcontent/dog_over_t.asp")
	menuArray[11] = new Array ("Drunk Drivers", "flcontent/drunk_over_t.asp")
	menuArray[12] = new Array ("Large Truck Cases", "flcontent/truck_over_t.asp")
	menuArray[13] = new Array ("Motorcycle Accidents", "flcontent/motorcycle_over_t.asp")
	menuArray[14] = new Array ("School Bus Accidents", "flcontent/bus_over_t.asp")
	menuArray[15] = new Array ("Slip and Fall", "flcontent/slip_over_t.asp")
	menuArray[16] = new Array ("Florida Resources", "flcontent/fl_resource.asp")
	menuArray[17] = new Array ("Statute of Limitations", "flcontent/statute_limit.asp")
			      
	return menuArray
}


