/*************************************************************
	To add new events, simply add a new block like the ones
	below:
	
		//Begin New Block
		title[n] = "Title";
		summary[n] = "Summary - Keep this to a minimum";
		description[n] = "Full Description";
		date[n] = "Date";
		
		NOTICE: It is important to note that the events will show up
		in the order listed, not by date. Additionally, you should
		avoid special characters.  If you want to use a double quote (")
		make sure it is escaped.  To escape a quote, it needs a backslash
		before it (\").
*/
//************************************************************

//Initiate Sequence - Do not modify
var title = new Array();
var summary = new Array();
var description = new Array();
var date = new Array();
n = -1;

// Add your blocks below:

// Begin New Block
n++;
title[n] = "SmithBarney Financial Consultant";
summary[n] = "Financial Planning";
description[n] = "Financial Planning";
date[n] = "2/25/04";

// Begin New Block
n++;
title[n] = "SAM Elections";
summary[n] = "For 2004-2005";
description[n] = "For 2004-2005";
date[n] = "3/10/04";

// Begin New Block
n++;
title[n] = "Caterpillar Corporate HR Representative";
summary[n] = "Successful Management Practices &amp; Workplace Success";
description[n] = "Successful Management Practices &amp; Workplace Success";
date[n] = "3/24/04";

// Begin New Block
n++;
title[n] = "Anheuser-Busch Tour";
summary[n] = "Successful Management Practices &amp; Workplace Success";
description[n] = "Successful Management Practices &amp; Workplace Success";
date[n] = "4/16/04";

// Begin New Block
n++;
title[n] = "Annual SAM Business Roundtable";
summary[n] = "Place TBA";
description[n] = "Place TBA";
date[n] = "4/21/04";

// Begin New Block
n++;
title[n] = "Annual BMA Pizza Party Blowout with the Faculty";
summary[n] = "At Gormans";
description[n] = "At Gormans";
date[n] = "5/4/04";