/***********************************************
		* Drop down menu w/ description- © Dynamic Drive (www.dynamicdrive.com)
		* This notice must stay intact for use
		* Visit http://www.dynamicdrive.com/ for full source code
		***********************************************/

		//1) CUSTOMIZE TEXT DESCRIPTIONS FOR LINKS ABOVE
		var thetext1=new Array()
		thetext1[0]="East Texas attorneys answer your questions about the law."
		thetext1[1]="Return to the EastTexasLaw.TV home page."
		thetext1[2]="Organization/Startup, Transactions, Franchises, Bankruptcy, Business, Debt Collection"
		thetext1[3]="DWI/DUI, Drugs/Controlled Substances, Felony Defense, Parole/Probation, Traffic Violations"
		thetext1[4]="Wrongful termination, Worker's Compensation, Employment Discrimination"
		thetext1[5]="Divorce, Adoption, Domestic Violence"
		thetext1[6]="Estate Planning, Wills/Probate, Tax Law, Social Security, Investment Fraud, Bankruptcy"
		thetext1[7]="Asbestos/Mesothelioma, Avandia, Vioxx"
		thetext1[8]="Auto Accidents, Defective Products, Malpractice, Nursing Home Abuse, Workplace Injury, more..."

		/// You may define additional text arrays if you have multiple drop downs:
		var thetext2=new Array()
		thetext2[0]=""
		thetext2[1]=""
		thetext2[2]=""
		thetext2[3]=""

		// Now, see 2) below for final customization step

		function displaydesc(which, descriptionarray, container){
		if (document.getElementById)
		document.getElementById(container).innerHTML=descriptionarray[which.selectedIndex]
		}

		function jumptolink(what){
		var selectedopt=what.options[what.selectedIndex]
		if (document.getElementById && selectedopt.getAttribute("target")=="newwin")
		window.open(selectedopt.value)
		else
		window.location=selectedopt.value
		}

		//2) Call function displaydesc() for each drop down menu you have on the page
		//   This function displays the initial description for the selected menu item
		//   displaydesc(name of select menu, name of corresponding text array, ID of SPAN container tag):
		//   Important: Remove the calls not in use (ie: 2nd line below if there's only 1 menu on your page)

		displaydesc(document.form1.select1, thetext1, 'textcontainer1')
