/*

	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 reccount=recArray.length;
	document.write("<tr><td>"); 

for(i=0;i<reccount;i++)
{
	/*Name, dynamically  linked, and description*/
	document.write("<a href=\""+recArray[i][4]+"\">"+recArray[i][0]+"</a><br />"+recArray[i][5]+"</td>"); 
	/*Days*/
	document.write("<td>"+recArray[i][6]+"</td>"); 
	/*Date*/
	document.write("<td>"+recArray[i][1]+"</td>"); 
	/*Time*/
	document.write("<td>"+recArray[i][7]+"</td>"); 
	/*Location*/
	document.write("<td>"+recArray[i][8]+"</td>"); 
	/*Price*/
	document.write("<td>"+recArray[i][9]+"</td>"); 
	document.write("</tr>"); 
	document.write("<tr><td>"); 
}
