

//1) CUSTOMIZE TEXT DESCRIPTIONS FOR LINKS ABOVE
var thetext1=new Array()
thetext1[0]=""
thetext1[1]="Maximum capacity of 300 or 55 people when using the basketball court"
thetext1[2]="Maximum capacity of 100"
thetext1[3]="Maximum capacity of 160"
thetext1[4]="Maximum capacity of 200"
thetext1[5]="Maximum capacity of 151"
thetext1[6]="Maximum capacity of 245 or 24 people when using the basketball court"

var thetext2=new Array()
thetext2[0]=""
thetext1[1]="Maximum capacity of 300 or 55 people when using the basketball court"
thetext1[2]="Maximum capacity of 100"
thetext1[3]="Maximum capacity of 160"
thetext1[4]="Maximum capacity of 200"
thetext1[5]="Maximum capacity of 151"
thetext1[6]="Maximum capacity of 245 or 24 people when using the basketball court"

/// You may define additional text arrays if you have multiple drop downs:

// 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)

