//This is the script that contains all of the dates listed
//on the left hand side of the site.
//You only need to change the dates here and they will be
//updated on all pages of the site.
var ccEvents=new Array();
var i=j=0;
var d=document;

function changeStatusBar (statusText) {
	window.status=statusText;
}

/*
function changeStatusOnMouse (linkElement) {
	if (d.links[linkElement]) {
		d.links[linkElement].onmouseover=changeStatusBar;
*/				
	
		
	
//each element of the above array is a unique event.  Each element
//is also an array consisting of five string entries in the following
//format: [event name, date, time, location, short description]
ccEvents[0]=["Caribbean Splash", "Friday, April 11th", "7:30 pm", "Lowell Lecture Hall","Come join us for our first annual Caribbean Splash Cultural Show, sponsored By Air Jamaica.  Featuring Caribbean CLub Dance Troupe, Soulfege, a fashion show, and a raffle for two round trip tickets to anywhere Air Jamaica flies.  Tickets available at door and at the <a href=\"http:\/\/www.fas.harvard.edu\/~tickets\" target=\"_new\" class=\"normalLink\">Harvard Box Office</a>"];
//ccEvents[1]=["Soca-robics!", "Saturday, Oct. 5th or 12th", "11 am", "Location TBA","Come get in shape with the Caribbean Club as we sweat to the sweet soca sounds."];
//ccEvents[2]=["Island Treats Study Break & Dominoes Tournament", "Sunday, Oct. 20th", "Time TBA", "Location TBA","Take a break from studying to come out and chat, eat, watch a movie, and even compete in a dominoes tournament -- Caribbean style of course.  There may even be prizes, but you have to come and see."];
//ccEvents[3]=["Apollo Night", "Friday, October 25th", "8 pm", "Lowell Lecture Hall","Watch Expressions, CCDT, and many other put their talents on display at this magnificent event."];

function writeEvents() {
	for (i=0; i<ccEvents.length; i++) {
		//Writes out the event name and makes it a link to a pop-up menu called "datePopup.html."  "datePopup.html" uses
		//this same file to print out details about the event using the last entry of each event array, the short description.
		document.write("<tr>"); 
		document.write("<td class=\"event_title\"><a onclick=\"eventNumber="+i+";MM_openBrWindow('datePopup.html','','width=350,height=350')\" class=\"eventLink\" href=\"javascript:;\" onmouseover=\"window.status='"+ccEvents[i][j]+"'\" onmouseout=\"window.status=''\">"+ccEvents[i][j]+"</a></td>");
		document.write("</tr>");
		document.write("<tr>");
	
		//Writes out the Date, time, and location of the event
		document.write("<td class=\"events\">"+ccEvents[i][j+1]+" &#151; "+ccEvents[i][j+2]+" ("+ccEvents[i][j+3]+")</td>");
		document.write("</tr>");
		document.write("<tr>"); 
	    	document.write("<td><img src=\"Images/black_spacer.gif\" width=\"98\" height=\"1\"></td>");
		document.write("</tr>");
	}	
	//This is to write the link at the end to the Caribbean Club mailing list site
	document.writeln("<tr>");
	document.writeln("<td valign=\"top\" class=\"events\">We would like to thank Air Jamaica for their sponsorship of our 1st annual Caribbean Splash.  For fares to the Caribbean for everything from vacations to cricket matches, visit <a href=\"http:/\/\www.airjamaica.com\" target=\"_new\">Air Jamaica's website</a>.");
	document.writeln("</tr>");
	document.writeln("<tr>");
	document.writeln("<td valign=\"top\" class=\"events\">Want to hear about all the activities of the Caribbean Club? Click <a href=\"javascript:;\" onmouseover=\"window.status='Join our mailing list'\" onmouseout=\"window.status=''\" onClick=\"MM_openBrWindow('http://lists.hcs.harvard.edu/mailman/listinfo/hrcclub-list','mailman','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=600')\">here</a> to go to the website where you can join our mailing list!</td>");
	document.writeln("</tr>");
}