/*
	Feel free to change these and add your own images.
	Each image has up to 4 attributes associated with it:
	[0] = Club Name
	[1] = Active, equal to 1 if active or 0 if not
	[2] = Club Website
	[3] = Contact 1 Name
	[4] = Contact 1 Email Address
	[5] = Contact 1 Phone
	[6] = Contact 2 Name
	[7] = Contact 2 Email Address
	[8] = Contact 2 Phone
	[9] = Practice Schedule info
	
 */

//var i=menu.choice.options[menu.choice.selectedIndex].value;
function showclub(selection)
{
	var i=selection;
	/*Name, Website*/
	document.write("<h3>"+sportArray[i][0]+"</h3>"); 
	document.write("Club Website: <a href=\""+sportArray[i][2]+"\">"+sportArray[i][2]+"</a><br />"); 
	/*contact 1*/
	document.write("Club Contacts:<br />"); 
	document.write("<ul><li>"+sportArray[i][3]+" = <a href=\"mailto:"+sportArray[i][4]+"\">"+sportArray[i][4]+"</a>, ("+sportArray[i][5]+")</li>"); 
	/*contact 2*/
	document.write("<li>"+sportArray[i][6]+" = <a href=\"mailto:"+sportArray[i][7]+"\">"+sportArray[i][7]+"</a>, ("+sportArray[i][8]+")</li></ul>"); 
	/*Practice Schedule*/
	document.write("Practice Schedule:"+sportArray[i][9]); 
}