/*

	Each image has up to 10 attributes associated with it:
	[0] = Event Name
	[1] = Event Dates, ie. September 5 - October 12, 2006
	[2] = Date to first display formatted = year month day, without spaces, ex= may 7, 2006 = 20060507
	[3] = Deadline in the same format
	[4] = link for the event
	[5] = Event description to be displayed
	[6] = Event Days, ie. Tuesdays/Thursdays
	[7] = Event Time, ie. 4:30p-6:00p
	[8] = Event Location, ie. MABL South, Gym
	[9] = Event Price Student/Member/Guest, ie. $25 / $55 / $70 OR $15 students only
	
 */

var sportcount=sportArray.length;
	document.write("<select name=\"menu\"  onchange=\"changeit(this.form)\">");
	document.write("<option selected=\"selected\" value=\"-1\">--Choose a Sports Club--</option>");

for(i=0;i<sportcount;i++)
{
	if(sportArray[i][1]=="1")
	{
		document.write("<option value=\""+i+"\">"+sportArray[i][0]+"</option>"); 
	}
}
	document.write("</select>");
