var events = new Array();

events[0] = new Array(
			'Noon Walks',
			'Monday April 17th',
			'Departing the University Health Cetner entrance.  <small>(Rain Location: Cole Field House)</small>');

events[1] = new Array(
			'Kick It Into Gear!  Cardioboxing Master Class <small>With Guest Instructor Elizabeth Brooks</small>',
			'6:30-7:30pm West Gym, Campus Recreation Center',
			"Kick your workout into gear in the Campus Recreation Center's West Gym. This instructor will give you the workout of your life!");

events[2] = new Array(
			'Making the Grade at the Diner',
			'Tuesday, April 18th',
			'Come to the Diner between 11:30-2pm Tuesday and Thursday where Registered Dieticians Jane Jakubczak and Sister Maureen Schrimpe will grade your diet.  You will learn what choices can be improved!');

events[3] = new Array(
			'Aqua jogging/walking <small>(shallow water)</small>',
			'5pm Campus Recreation Center Swimming Pool',
			'Student/faculty/staff ID card required. Aerobic card not required.');

events[4] = new Array(
			'A Self Defense Workout',
			'4:30-5:30pm Ritchie Coliseum Martial Arts Room',
			'See, learn, and practice 5 important self defense moves most anyone can perform. Taught by the campus Okinawan Karate Club Black Belts Leon, Yvette, and Stephanie.  Come dressed to warm up and move.');

events[5] = new Array(
			'Making the Grade at the Diner',
			'Wednesday April 19th, 11:30-2pm, The Diner',
			'Come to the Diner between 11:30-2pm Tuesday and Thursday where Registered Dieticians Jane Jakubczak and Sister Maureen Schrimpe will grade your diet.  You will learn what choices can be improved!');

events[6] = new Array(
			'Terps Wellness Expo',
			'5-8pm Campus Recreation Center, West Gym | H2OBICS (deep water) 5:30pm | Campus Recreation Center Swimming Pool',
			'Student/faculty/staff ID card required. Aerobic card not required.');

events[7] = new Array(
			'Walk to Lake Artemesia',
			'Thursday, April 20th, Noon-1pm',
			'');

events[8] = new Array(
			'Poker Walk',
			'Friday, April 21st Noon-1pm <small>Meet at the front entrance to the Health Center</small>',
			' Engage in exercise and play poker all at the same time!  Take a 1.5 mile walk around campus where you will pick up cards along the way, when we get back we will compare hands and top hand wins a prize!');

events[9] = new Array(
			'4th Annual Saturday of Service',
			'Saturday, April 22nd April 22, 2006',
			'8am  (Register by April 17th) See schedule. Earth Day Clean-up at Lake Artemesia REGISTER BY APRIL 17th @ <a href="http://www.csl.umd.edu">www.csl.umd.edu</a>');

function buildTable()
{
	for (row = 0; row < events.length; row++)
	{
		document.write("<tr>\n\t\t\t");

		for(cell = 0; cell < row.length; cell++)
		{
			document.write("<td>" +events[row][cell]+ "</td>\n\t\t\t\t");
		}

		document.write("</tr>");
	}
}