// JavaScript Document

function event(calDate,calEvent) {
	this.calDate = calDate;
	this.calEvent = calEvent;
}

calendar = new Array();
ix=0;



ix++; calendar[ix] = new event("Year09-10","Fall");
ix++; calendar[ix] = new event("8/25/2009","Semester Begins");
ix++; calendar[ix] = new event("8/26/2009","Classes Begin");
//ix++; calendar[ix] = new event("8/27/2009","First Day of Partial Refund");
ix++; calendar[ix] = new event("9/1/2009","Last Day to Add a Class");
ix++; calendar[ix] = new event("9/7/2009","Labor Day – College Closed");
ix++; calendar[ix] = new event("9/8/2009","Last Day to Drop a Class");
ix++; calendar[ix] = new event("9/8/2009","Last Day for Partial Refund");
ix++; calendar[ix] = new event("9/9/2009","Automatic Withdrawal Begins");
ix++; calendar[ix] = new event("9/22/2009","Last Day to Change to/from Audit Status");
ix++; calendar[ix] = new event("10/12/2009","Columbus Day – College Closed, No Classes");
ix++; calendar[ix] = new event("10/16/2009","Staff Professional Day");
ix++; calendar[ix] = new event("10/20/2009","Last Day for Automatic Withdrawal");
ix++; calendar[ix] = new event("10/21/2009","Withdrawal with Permission of Instructor Begins");
ix++; calendar[ix] = new event("11/3/2009","Last Day to Resolve Incompletes from previous semester");
ix++; calendar[ix] = new event("11/11/2009","Veterans Day – College Open, Classes Held");
ix++; calendar[ix] = new event("11/25/2009","Thanksgiving Recess Begins 10:00pm");
ix++; calendar[ix] = new event("11/30/2009","Thanksgiving Recess Ends 7:00am");
ix++; calendar[ix] = new event("12/14/2009","Last Day of Classes");
ix++; calendar[ix] = new event("12/14/2009","Last Day to Withdraw with Permission of the Instructor");
ix++; calendar[ix] = new event("12/15/2009","Final Exams Begin");
ix++; calendar[ix] = new event("12/21/2009","Final Exams End");
ix++; calendar[ix] = new event("12/22/2009","Final Exam Snow Day");
ix++; calendar[ix] = new event("12/23/2009","All Grades Due");


//
//


ix++; calendar[ix] = new event("Year09-10","Spring");
ix++; calendar[ix] = new event("1/19/2010","Semester Begins");
ix++; calendar[ix] = new event("1/19/2010","Last Day for a Full Tuition Refund");
ix++; calendar[ix] = new event("1/20/2010","Classes Begin");
ix++; calendar[ix] = new event("1/20/2010","First Day for Partial Refund");
ix++; calendar[ix] = new event("1/26/2010","Last Day to Add a Class");
ix++; calendar[ix] = new event("2/2/2010","Last Day to Drop a Class");
ix++; calendar[ix] = new event("2/2/2010","Last Day for Partial Refund");
ix++; calendar[ix] = new event("2/3/2010","Automatic Withdrawal Begins");
ix++; calendar[ix] = new event("2/12/2010","Lincoln's Birthday – College Closed");
ix++; calendar[ix] = new event("2/15/2010","Washington's Birthday – College Closed");
ix++; calendar[ix] = new event("2/16/2010","Last Day to Change to/from Audit Status");
ix++; calendar[ix] = new event("3/15/2010","Spring Recess Begins - 7:00am");
ix++; calendar[ix] = new event("3/22/2010","Spring Recess Ends - 7:00am");
ix++; calendar[ix] = new event("3/23/2010","Last Day for Automatic Withdrawal");
ix++; calendar[ix] = new event("3/24/2010","Withdrawal with Permission of Instructor Begins");
ix++; calendar[ix] = new event("3/30/2010","Last Day to Resolve Incompletes from Previous Semester");
ix++; calendar[ix] = new event("4/2/2010","Good Friday - College Closed");
ix++; calendar[ix] = new event("4/3/2010","College Closed");
ix++; calendar[ix] = new event("4/16/2010","System-Wide Professional Day - Classes Held");
ix++; calendar[ix] = new event("5/13/2010","Reading Day – College Open, No Classes");
ix++; calendar[ix] = new event("5/15/2010","Last Day of Classes");
ix++; calendar[ix] = new event("5/15/2010","Last Day to Withdraw with Permission of Instructor");
ix++; calendar[ix] = new event("5/17/2010","Final Exams Begin");
ix++; calendar[ix] = new event("5/22/2010","Final Exams End");
ix++; calendar[ix] = new event("5/24/2010","All Grades Due");
ix++; calendar[ix] = new event("5/27/2010","Commencement");

