// JavaScript Document
function EACTrip(title, date, location, fee, limit, description) {
	this.title = title;
	this.date = date;
	this.location = location;
	this.fee = fee;
	this.limit = limit;
	this.description = description;
}					

var eacTrips = new Array();
eacTrips[0] = new EACTrip("Sea Kayaking-Mississippi River Backwaters &amp; Sandbar Camping", "September 18-20, 2009", "", "$50.00", "", "");
eacTrips[1] = new EACTrip("Backpacking Porcupine Mountains", "September 25-27, 2009", "", "$50.00", "", "");
eacTrips[2] = new EACTrip("Namekagon River Kayaking", "October 2-4, 2009", "", "$50.00", "", "");
eacTrips[3] = new EACTrip("Shanty Town Camp Out", "October 6, 2009", "", "FREE!", "", "For The Homeless &amp; Hungry");
eacTrips[4] = new EACTrip("Fall Afternoon Bike Tour", "October 8, 2009, 3:00 PM", "Meet at the EAC", "", "", "");
eacTrips[5] = new EACTrip("Chippewa River Day Paddle", "October 15, 2009, 2:00 PM", "Meet at the EAC", "FREE!", "", "");
eacTrips[6] = new EACTrip("Afton Alps Downhill Skiing", "December 4, 2009", "", "$15.00", "", "");
