var titles = [];
var messages = [];

titles[0] = "Community Outreach Opportunity";
messages[0] = "Be a mentor for Cottonwood valley Charter School middle school students competing in the BEST Robotics Design Competition. Help build remote control vehicle and playing field.\nLooking for volunteers for any day of the week from 2:00-3:00PM\nContact Karen Gram at kgram@nmt.edu or call CVCS at 838-2026";
titles[1] = "Next Meeting Monday 09 November 2009 @8PM, in JA101";
messages[1] = "Reminder: NMT IEEE is having a t-shirt design contest. Please write down/draw your designs up before the next meeting and we will vote on our new t-shirts. We will be giving a prize to the winner!";

for(var c = 0; c < messages.length; c++) {
	document.writeln("<p>");
	document.writeln("<strong>");
	document.writeln(titles[c]);
	document.writeln("</strong><br />");
	document.writeln(messages[c]);
	document.writeln("</p>");
}

