<!-- // Hide the script

/*
 * eventcheck.js
 *
 * Checks the date and prints important events corresponding with those dates
 * Michael Lieberman, 2001
 *
 * Date::getYear() fix
 */

// Constants
var MAX_ELEM   = 600; // The maximum number of events that the array can hold
var START_TIME = 0;   // The time to begin displaying events (24hr)
var END_TIME   = 24;  // The time to stop displaying events  (24hr)

var now = new Date();
if(now.getHours() >= START_TIME && now.getHours() < END_TIME)
{
/* Events is the two dimensional array holding the dates and events.
 * For any given i (under MAX_ELEM):
 *   Events[i][0] is the starting date string
 *   Events[i][1] is the ending date string
 *   Events[i][2] is the event string
 */
var Events = new Array(MAX_ELEM);

// "@" will be the string to flag the unfilled items
for(i=0; i<MAX_ELEM; i++)
{
   Events[i] = new Array(5);
   Events[i][0] = "@";
   Events[i][1] = "@";
   Events[i][2] = "@";
   Events[i][3] = "@";
   Events[i][4] = "@";
}

/* Manually fill in the dates / events.  I wanted to read from a text file
 *   but Javascript would not allow me...
 *
 * To add a new event, add five lines.  Examples:
 *   Events[0][0] = '10/31/2001';
 *   Events[0][1] = '10/31/2001';
 *   Events[0][2] = 'headline';
 *   Events[0][3] = 'link';
 *   Events[0][4] = 'blurb';
 *
 * Time the event will be displayed:  Starting on Events[n][0],
 *                                    Ending at the end of the day Events[n][1]
 *
 * The event name can also have HTML tags.
 * The order in which events are entered does not matter.  The events will be
 *   displayed on the page (if the date is in the valid range) in whatever
 *   order they are in in the array.
 */

Events[101][0] = '12/27/2011';
Events[101][1] = '1/3/2012';
Events[101][2] = '1/3 - Classes Resume';
Events[101][3] = '';
Events[101][4] = '';

Events[102][0] = '1/3/2012';
Events[102][1] = '2/28/2012';
Events[102][2] = 'Booster Club Used Book Sale Contributions accepted through 2/29';
Events[102][3] = '';
Events[102][4] = '';

Events[103][0] = '12/27/2011';
Events[103][1] = '1/9/2012';
Events[103][2] = '1/3, 4 &amp; 9 - Registration Materials Distributed to WJ Students';
Events[103][3] = '';
Events[103][4] = 'Registration cards will be distributed to WJ students in English/ESOL classes on the following schedule: ' +
                 'Juniors-Tuesday January 3rd, Sophomores-Wednesday January 4th &amp; ' +
                 'Freshmen-Monday January 9th.';

Events[104][0] = '12/27/2011';
Events[104][1] = '1/20/2012';
Events[104][2] = '1/3-20 - PSAT Results Distributed to Sophomores through Counseling Individual Meetings';
Events[104][3] = '';
Events[104][4] = '';

Events[105][0] = '12/27/2011';
Events[105][1] = '1/5/2012';
Events[105][2] = '1/3-6 - Parking Permit Applications Accepted from Seniors &amp; Juniors ONLY, 7:00 a.m. - Security Office-Room 137';
Events[105][3] = '/schools/wjhs/studserve/security/parking.shtm';
Events[105][4] = 'Click the above link for information and registration forms. Juniors will only receive permits ONLY if spaces are available after Senior requests are filled.';

Events[106][0] = '12/27/2011';
Events[106][1] = '1/3/2012';
Events[106][2] = '1/3 - "Les Mis" Auditions, 2:30 p.m. - Auditorium &amp; Chorus Room';
Events[106][3] = '';
Events[106][4] = '';

Events[111][0] = '12/28/2011';
Events[111][1] = '1/4/2012';
Events[111][2] = '1/4 - Debate League Tournament, 2:30 p.m. - Walter Johnson HS';
Events[111][3] = '/schools/wjhs/orgs/debate';
Events[111][4] = '';

Events[112][0] = '12/28/2011';
Events[112][1] = '1/4/2012';
Events[112][2] = '1/4 - Parent Info Night - 2012-2013 Registration, 7:00 p.m. - WJ Auditorium &amp; WJ Cafeteria';
Events[112][3] = '/schools/wjhs/information/letters/registration.pdf';
Events[112][4] = '';

Events[113][0] = '12/28/2011';
Events[113][1] = '1/4/2012';
Events[113][2] = '1/4 - WJ Ed Foundation Meeting, 7:30 p.m. - WJ Media Center';
Events[113][3] = 'http://www.wjedfoundation.org';
Events[113][4] = '';

Events[115][0] = '12/29/2011';
Events[115][1] = '1/5/2012';
Events[115][2] = '1/5 - Registration Materials Distributed at N. Bethesda';
Events[115][3] = '';
Events[115][4] = '';

Events[118][0] = '12/29/2011';
Events[118][1] = '1/5/2012';
Events[118][2] = '1/5 - 11th Grade UMCP Young Scholar Candidates Mtg w/Ms. Baker-4th Period - Auditorium';
Events[118][3] = '';
Events[118][4] = 'Juniors eligible to apply for these UMCP classes at WJ will be invited to the meeting.';

Events[119][0] = '12/29/2011';
Events[119][1] = '1/5/2012';
Events[119][2] = '1/5 - "Les Mis" Auditions, 2:30 p.m. - Chorus Room';
Events[119][3] = '';
Events[119][4] = '';

Events[120][0] = '1/6/2012';
Events[120][1] = '1/6/2012';
Events[120][2] = '1/6 - LAST DAY for Parking Permit Applications from Seniors &amp; Juniors ONLY, 7:00 a.m. - Security Office-Room 137';
Events[120][3] = '/schools/wjhs/studserve/security/parking.shtm';
Events[120][4] = 'Click the above link for information and registration forms. Juniors will only receive permits ONLY if spaces are available after Senior requests are filled.';

Events[120][0] = '12/30/2011';
Events[120][1] = '1/6/2012';
Events[120][2] = '1/6 - SSL first semester forms due to Main Office from underclassmen';
Events[120][3] = '/schools/wjhs/ssl/';
Events[120][4] = '';

Events[121][0] = '12/30/2011';
Events[121][1] = '1/6/2012';
Events[121][2] = '1/6 - Registration Materials Distributed at Tilden';
Events[121][3] = '';
Events[121][4] = '';

Events[123][0] = '12/30/2011';
Events[123][1] = '1/6/2012';
Events[123][2] = '1/6 - SSL ALL SENIOR HOURS due to Main Office';
Events[123][3] = '/schools/wjhs/ssl/';
Events[123][4] = '';

Events[126][0] = '12/30/2011';
Events[126][1] = '1/6/2012';
Events[126][2] = '1/6 - WJ Hosts "Attendance Matters" Cluster Meeting, 8:30 a.m. - Media Center Conf Rm';
Events[126][3] = '';
Events[126][4] = '';

Events[127][0] = '12/30/2011';
Events[127][1] = '1/6/2012';
Events[127][2] = '1/6 - "Les Mis" Call-Backs, 2:30 p.m. - Auditorium &amp; Chorus Room';
Events[127][3] = '';
Events[127][4] = '';

Events[129][0] = '12/31/2011';
Events[129][1] = '1/7/2012';
Events[129][2] = '1/7 - Damascus Pom Competition, 1:00 p.m. - Damascus HS';
Events[129][3] = '';
Events[129][4] = 'Doors open at 12:00 p.m. and WJ is 3rd to perform. Tickets are $5 from the coach or a member of the squad, in advance, or at the door.';

Events[134][0] = '1/2/2012';
Events[134][1] = '1/9/2012';
Events[134][2] = '1/9 - HSA English 10 Exam for Specific Seniors, 7:25 a.m.';
Events[134][3] = '';
Events[134][4] = '';

Events[136][0] = '1/2/2012';
Events[136][1] = '1/9/2012';
Events[136][2] = '1/9 - Practice ACT/SAT Feedback Meeting, 7:30 p.m. - WJ Cafeteria';
Events[136][3] = '';
Events[136][4] = 'How to read the score results<br>Strategies for taking the SAT and ACT' +
                 '<br>Understanding the role of the standardized tests in college admissions';

Events[140][0] = '1/3/2012';
Events[140][1] = '1/10/2012';
Events[140][2] = '1/10 - HSA Biology Exam for Specific Seniors, 7:25 a.m.';
Events[140][3] = '';
Events[140][4] = '';

Events[142][0] = '1/3/2012';
Events[142][1] = '1/10/2012';
Events[142][2] = '<del>1/12</del> <font color="red">1/10</font> - Winter Choral Concert, 7:30 p.m. - WJ Auditorium';
Events[142][3] = '';
Events[142][4] = '';

Events[146][0] = '1/7/2012';
Events[146][1] = '1/19/2012';
Events[146][2] = '1/11 - Parking Permits-List of Seniors Receiving Permits Posted/Payments Accepted Through 1/20, 7:00 a.m. - Security Office-Room 137';
Events[146][3] = '/schools/wjhs/studserve/security/parking.shtm';
Events[146][4] = 'Click the above link for information';

Events[147][0] = '1/4/2012';
Events[147][1] = '1/11/2012';
Events[147][2] = '1/11 - HSA Algebra Exam for Specific Seniors, 7:25 a.m.';
Events[147][3] = '';
Events[147][4] = '';

Events[148][0] = '1/4/2012';
Events[148][1] = '1/11/2012';
Events[148][2] = '1/11 - Booster Club Meeting, 7:30 p.m. - WJ Media Center';
Events[148][3] = 'http://www.wjboosterclub.com';
Events[148][4] = '';

Events[151][0] = '1/5/2012';
Events[151][1] = '1/12/2012';
Events[151][2] = '1/12 - No Homework Assigned Today Due Tomorrow';
Events[151][3] = '';
Events[151][4] = '';

Events[152][0]   = '1/5/2012';
Events[152][1]   = '1/20/2012';
Events[152][2]   = '1/12-20 - Final Exams</a>';
Events[152][3]   = '/schools/wjhs/information/exam_winter_guidelines.shtm';
Events[152][4]   = '';

Events[161][0] = '1/6/2012';
Events[161][1] = '1/13/2012';
Events[161][2] = '1/13 - GAC Meeting, 8:15 a.m. - WJ Staff Dining Room';
Events[161][3] = '/schools/wjhs/orgs/ptsa/guidance';
Events[161][4] = '';

Events[164][0] = '1/7/2012';
Events[164][1] = '1/14/2012';
Events[164][2] = '1/14 - Forensics League Tournament, 8:00 a.m. - Blake HS';
Events[164][3] = '/schools/wjhs/orgs/forensics';
Events[164][4] = '';

Events[172][0] = '1/10/2012';
Events[172][1] = '1/17/2012';
Events[172][2] = '1/17 - HSA English 10 Make-up for Specific Seniors, 7:25 a.m.';
Events[172][3] = '';
Events[172][4] = '';

Events[175][0] = '1/10/2012';
Events[175][1] = '1/17/2012';
Events[175][2] = '1/17 - PTSA Meeting, 7:30 p.m. - WJ Media Center';
Events[175][3] = '/schools/wjhs/orgs/ptsa/';
Events[175][4] = '';

Events[179][0] = '1/11/2012';
Events[179][1] = '1/18/2012';
Events[179][2] = '1/18 - HSA Biology Make-up for Specific Seniors, 7:25 a.m.';
Events[179][3] = '';
Events[179][4] = '';

Events[186][0] = '1/12/2012';
Events[186][1] = '1/19/2012';
Events[186][2] = '1/19 - HSA Algebra Make-up for Specific Seniors, 7:25 a.m.';
Events[186][3] = '';
Events[186][4] = '';

Events[189][0] = '1/12/2012';
Events[189][1] = '1/19/2012';
Events[189][2] = '1/19 - WJ Hosts Kensington Parkwood Winter Concert, 7:00 p.m. - WJ Auditorium';
Events[189][3] = '';
Events[189][4] = '';

Events[191][0] = '1/13/2012';
Events[191][1] = '1/20/2012';
Events[191][2] = '1/20 - 2nd Marking Period Ends/1st Semester Ends';
Events[191][3] = '';
Events[191][4] = '';

Events[193][0] = '1/13/2012';
Events[193][1] = '1/20/2012';
Events[193][2] = '1/20 - MSP Leadership Retreat - 2nd Period';
Events[193][3] = '';
Events[193][4] = '';

Events[194][0] = '1/20/2012';
Events[194][1] = '1/20/2012';
Events[194][2] = '1/20 - Parking Permits for Seniors-Last Day for Payment &amp; Distribution, 7:00 a.m. - Security Office-Room 137';
Events[194][3] = '/schools/wjhs/studserve/security/parking.shtm';
Events[194][4] = 'Click the above link for information';

Events[199][0] = '1/16/2012';
Events[199][1] = '1/23/2012';
Events[199][2] = '1/23 - Last Day to Submit 1st Semester Obligations - School Bank';
Events[199][3] = '';
Events[199][4] = '';

Events[201][0] = '1/16/2012';
Events[201][1] = '1/23/2012';
Events[201][2] = '1/23 - Report Card Prep Day - No School for Students';
Events[201][3] = '';
Events[201][4] = '';

Events[202][0] = '1/16/2012';
Events[202][1] = '1/23/2012';
Events[202][2] = '1/23 - Indoor Track - MCPS Championships, 3:00 p.m. - PG Sportsplex';
Events[202][3] = '';
Events[202][4] = '';

Events[203][0] = '1/16/2012';
Events[203][1] = '1/23/2012';
Events[203][2] = '1/23 - PTSA Sponsors Freshman Parent Connection, 7:30 p.m. - WJ Student Commons';
Events[203][3] = '/schools/wjhs/orgs/ptsa/health_and_safety/parent_connect.shtm';
Events[203][4] = '';

Events[205][0] = '1/17/2012';
Events[205][1] = '1/24/2012';
Events[205][2] = '1/24 - 3rd Marking Period/Semester 2 Begin';
Events[205][3] = '';
Events[205][4] = '';

Events[206][0] = '1/17/2012';
Events[206][1] = '1/24/2012';
Events[206][2] = '1/24 - UMCP Young Scholars "Entrepreneurial Opportunity Analysis and Decision-Making in 21st Century Technology Ventures" Class Begins (Meets Tue &amp; Thu), 7:35 a.m. ' +
                 '- WJ Room 147';
Events[206][3] = '';
Events[206][4] = '';

Events[207][0] = '1/17/2012';
Events[207][1] = '1/24/2012';
Events[207][2] = '1/24 - UMCP Young Scholars "Social Psychology" Class Begins (Meets Tues &amp; Thurs), 7:35 a.m. - WJ Rm 107';
Events[207][3] = '';
Events[207][4] = '';

Events[209][0] = '1/18/2012';
Events[209][1] = '1/25/2012';
Events[209][2] = '1/25 - Big Train Submission Deadline';
Events[209][3] = '/schools/wjhs/orgs/ptsa/bigtrain/submit.shtm';
Events[209][4] = '';

Events[210][0] = '1/18/2012';
Events[210][1] = '1/25/2012';
Events[210][2] = '1/25 - UMCP Young Scholars "Social and Group Violence in America" Class Begins (Meets Mon &amp; Wed), 7:35 a.m. - WJ Room 147';
Events[210][3] = '';
Events[210][4] = '';

Events[212][0] = '1/19/2012';
Events[212][1] = '1/26/2012';
Events[212][2] = '1/26 - PTSA Sponsors Sophomore Parent Connection, 7:30 p.m. - WJ Student Commons';
Events[212][3] = '/schools/wjhs/orgs/ptsa/health_and_safety/parent_connect.shtm';
Events[212][4] = '';

Events[213][0] = '1/20/2012';
Events[213][1] = '1/27/2012';
Events[213][2] = '1/27 - Registration Cards from Tilden &amp; N. Bethesda Students Due to 8th Grade Teachers';
Events[213][3] = '';
Events[213][4] = '';

Events[215][0] = '1/20/2012';
Events[215][1] = '1/27/2012';
Events[215][2] = '1/27 - <i>The Pitch</i> Distribution Date';
Events[215][3] = 'http://www.wjpitch.com';
Events[215][4] = 'The print edition of <i>The Pitch</i> is distributed to student through 1st period classes. Click the above link to read <i>The Pitch</i> Online';

Events[216][0] = '1/21/2012';
Events[216][1] = '1/28/2012';
Events[216][2] = '1/28 - SAT Test - NOT at WJ';
Events[216][3] = '/schools/wjhs/studserve/career/SATs.shtm';
Events[216][4] = '';

Events[217][0] = '1/21/2012';
Events[217][1] = '1/28/2012';
Events[217][2] = '1/28 - Jaguar Pom Competition, 2:00 p.m. - Northwest HS';
Events[217][3] = '';
Events[217][4] = 'Doors open at 1:30 p.m. WJ is third to perform. Tickets are $5 from the coach or a member of the squad, in advance, or at the door.';

Events[219][0] = '1/21/2012';
Events[219][1] = '1/28/2012';
Events[219][2] = '1/28 - WJ Education Foundation/Booster/PTSA Adult Carnival, 7:30 p.m. - BCC Rescue Squad';
Events[219][3] = 'http://www.wjedfoundation.org';
Events[219][4] = 'Join us at this evening of fun and games to support WJ.';

Events[220][0] = '1/30/2012';
Events[220][1] = '2/10/2012';
Events[220][2] = '1/30-2/10 - Order Roses for your Valentine from <i>The Pitch</i>';
Events[220][3] = 'http://www.wjpitch.com/top-stories/2012/01/28/rose-sale-order-form/';
Events[220][4] = 'Roses are $2 each or $5 for three and will be delivered during 3rd or 4th periods. Complete the online form to order and mail in your payment today!';

Events[222][0] = '1/23/2012';
Events[222][1] = '1/30/2012';
Events[222][2] = '1/30 - PTSA Sponsors Junior Parent Connection, 7:30 p.m. - WJ Student Commons';
Events[222][3] = '/schools/wjhs/orgs/ptsa/health_and_safety/parent_connect.shtm';
Events[222][4] = '';

Events[224][0] = '1/24/2012';
Events[224][1] = '1/31/2012';
Events[224][2] = '1/31 - BTSN Schedule Completion during 1st Period, 7:25 a.m.';
Events[224][3] = '';
Events[224][4] = 'Parents please ask your students for a copy of the schedules prepared for you for Back-To-School Night. At minimum, come to WJ knowing your students\' 1st period classrooms.';

Events[227][0] = '1/25/2012';
Events[227][1] = '2/1/2012';
Events[227][2] = '2/1 - Black History Assembly Rehearsal, 2:30 p.m. - Auditorium';
Events[227][3] = '';
Events[227][4] = '';

Events[228][0] = '1/25/2012';
Events[228][1] = '2/1/2012';
Events[228][2] = '2/1 - Debate League Tournament, 2:30 p.m. - Walter Johnson HS';
Events[228][3] = '/schools/wjhs/orgs/debate';
Events[228][4] = '';

Events[229][0] = '1/25/2012';
Events[229][1] = '2/1/2012';
Events[229][2] = '2/1 - WJ Ed Foundation Meeting, 7:30 p.m. - WJ Media Center';
Events[229][3] = 'http://www.wjedfoundation.org';
Events[229][4] = '';

Events[231][0] = '1/26/2012';
Events[231][1] = '2/2/2012';
Events[231][2] = '2/2 - Registration Cards Picked-Up from N. Bethesda';
Events[231][3] = '';
Events[231][4] = '';

Events[234][0] = '1/27/2012';
Events[234][1] = '2/3/2012';
Events[234][2] = '2/3 - APEX - Results of Program Screening mailed';
Events[234][3] = '';
Events[234][4] = '';

Events[235][0] = '1/27/2012';
Events[235][1] = '2/3/2012';
Events[235][2] = '2/3 - Registration Cards Picked-Up from Tilden';
Events[235][3] = '';
Events[235][4] = '';

Events[236][0] = '1/27/2012';
Events[236][1] = '2/3/2012';
Events[236][2] = '2/3 - WJ Hosts "Attendance Matters" Cluster Meeting, 8:30 a.m. - Media Center Conf Rm';
Events[236][3] = '';
Events[236][4] = '';

Events[237][0] = '1/27/2012';
Events[237][1] = '2/3/2012';
Events[237][2] = '2/3 - Forensics League Finals Tournament, 3:00 p.m. - Blake HS';
Events[237][3] = '/schools/wjhs/orgs/forensics';
Events[237][4] = '';

Events[239][0] = '1/28/2012';
Events[239][1] = '2/4/2012';
Events[239][2] = '2/4 - Poms-MCPS Pompon Championship, 1:00 p.m. - Richard Montgomery HS';
Events[239][3] = '';
Events[239][4] = 'Doors open at 12:30 p.m. Tickets are $4. Purchasing from a member of the squad in advance is highly recommended but tickets will also be sold at the door, if available.';

Events[240][0] = '1/28/2012';
Events[240][1] = '2/4/2012';
Events[240][2] = '2/4 - Swim &amp; Dive-Division I Diving Championship, 7:30 a.m./Swimming Championship, 9:30 a.m. - Germantown Indoor Swim Center';
Events[240][3] = '';
Events[240][4] = '';

Events[241][0] = '1/28/2012';
Events[241][1] = '2/4/2012';
Events[241][2] = '2/4 - Forensics League Finals Tournament, 8:00 a.m. - Blake HS';
Events[241][3] = '/schools/wjhs/orgs/forensics';
Events[241][4] = '';

Events[243][0] = '1/28/2012';
Events[243][1] = '2/4/2012';
Events[243][2] = '2/4 - Wrestling Senior Recognition, 12:45 p.m. - WJ Gym';
Events[243][3] = '';
Events[243][4] = '';

Events[246][0] = '1/30/2012';
Events[246][1] = '2/6/2012';
Events[246][2] = '2/6 - Registration with Juniors &amp; ESOL 4/5';
Events[246][3] = '';
Events[246][4] = '';

Events[247][0] = '2/6/2012';
Events[247][1] = '2/10/2012';
Events[247][2] = '2/6-10 - National School Counseling Week-Thank you Counseling Services Staff!';
Events[247][3] = '';
Events[247][4] = '';

Events[248][0] = '1/30/2012';
Events[248][1] = '2/6/2012';
Events[248][2] = '2/6 - Staff Meeting, 2:30 p.m. - WJ Cafeteria';
Events[248][3] = '';
Events[248][4] = '';

Events[249][0] = '1/30/2012';
Events[249][1] = '2/6/2012';
Events[249][2] = '2/6 - PATHWAYS TO GRADUATION "Finding the Right Direction for Your Child" for Junior, Sophomore and Freshman Parents and Students, 7:30 p.m. - WJ Cafeteria';
Events[249][3] = '';
Events[249][4] = '';

Events[252][0] = '1/31/2012';
Events[252][1] = '2/7/2012';
Events[252][2] = '2/7 - Registration with Juniors &amp; ESOL 4/5';
Events[252][3] = '';
Events[252][4] = '';

Events[253][0] = '1/31/2012';
Events[253][1] = '2/7/2012';
Events[253][2] = '2/7 - Forensics League Awards Night, 7:00 p.m. - Blake HS Auditorium';
Events[253][3] = '/schools/wjhs/orgs/forensics';
Events[253][4] = '';

Events[255][0] = '2/1/2012';
Events[255][1] = '2/11/2012';
Events[255][2] = '2/8-11 - Swim &amp; Dive-Metropolitan Swimming &amp; Diving Championships - Germantown Indoor Swim Center';
Events[255][3] = '';
Events[255][4] = '';

Events[257][0] = '2/1/2012';
Events[257][1] = '2/8/2012';
Events[257][2] = '2/8 - Black History Assembly Rehearsal, 2:30 p.m. - Auditorium';
Events[257][3] = '';
Events[257][4] = '';

Events[258][0] = '2/1/2012';
Events[258][1] = '2/8/2012';
Events[258][2] = '2/8 - Booster Club Meeting, 7:30 p.m. - WJ Media Center';
Events[258][3] = 'http://www.wjboosterclub.com';
Events[258][4] = '';

Events[262][0] = '2/2/2012';
Events[262][1] = '2/9/2012';
Events[262][2] = '2/9 - Indoor Track-4A West Regional Championships, 4:00 p.m. - Baltimore Armory';
Events[262][3] = '';
Events[262][4] = '';

Events[263][0] = '2/2/2012';
Events[263][1] = '2/9/2012';
Events[263][2] = '2/9 - PTSA Sponsors Senior Parent Connection, 7:30 p.m. - WJ Student Commons';
Events[263][3] = '/schools/wjhs/orgs/ptsa/health_and_safety/parent_connect.shtm';
Events[263][4] = '';

Events[267][0] = '2/3/2012';
Events[267][1] = '2/10/2012';
Events[267][2] = '2/10 - GAC Meeting, 8:15 a.m. - WJ Staff Dining Room';
Events[267][3] = '/schools/wjhs/orgs/ptsa/guidance';
Events[267][4] = '';

Events[270][0] = '2/4/2012';
Events[270][1] = '2/11/2012';
Events[270][2] = '2/11 - ACT Test - NOT at WJ';
Events[270][3] = '/schools/wjhs/studserve/career/ACTs.shtm';
Events[270][4] = '';

Events[271][0] = '2/4/2012';
Events[271][1] = '2/11/2012';
Events[271][2] = '2/11 - JV Wrestling-Gaithersburg Tournament, 7:00 a.m. - Gaithersburg HS';
Events[271][3] = '';
Events[271][4] = '';

Events[273][0] = '2/5/2012';
Events[273][1] = '2/12/2012';
Events[273][2] = '2/12 - College Goal Sunday, 2:00 p.m. - Montgomery College - Takoma Park Charlene R. Nunley Student Center 1st Floor';
Events[273][3] = 'http://collegegoalsundaymd.org/';
Events[273][4] = 'Get FREE HELP applying for financial aid for college. Receive personalized, one-on-one information ' +
                 'you need to complete the Free Application for Federal Student Aid (FAFSA) that is the start of the financial aid application process.';

Events[274][0] = '2/6/2012';
Events[274][1] = '2/13/2012';
Events[274][2] = '2/13 - Registration with Sophomores &amp; ESOL 2/3';
Events[274][3] = '';
Events[274][4] = '';

Events[276][0] = '2/6/2012';
Events[276][1] = '2/13/2012';
Events[276][2] = '2/13 - GAC Parent Meeting - Senior Class, 7:30 p.m. - WJ Cafeteria';
Events[276][3] = '/schools/wjhs/orgs/ptsa/guidance';
Events[276][4] = '';

Events[277][0] = '2/7/2012';
Events[277][1] = '2/14/2012';
Events[277][2] = '2/14 - Registration with Sophomores &amp; ESOL 2/3';
Events[277][3] = '';
Events[277][4] = '';

Events[278][0]   = '2/8/2012';
Events[278][1]   = '2/15/2012';
Events[278][2]   = '2/15 - National History Day Exhibits, Periods 5-7 - Media Center';
Events[278][3]   = '';
Events[278][4]   = '';

Events[280][0] = '2/8/2012';
Events[280][1] = '2/15/2012';
Events[280][2] = '2/15 - Black History Assembly Rehearsal, 2:30 p.m. - Auditorium';
Events[280][3] = '';
Events[280][4] = '';

Events[281][0] = '2/8/2012';
Events[281][1] = '2/15/2012';
Events[281][2] = '2/15 - Historically Black Colleges &amp; Universities (HBCU) College Fair, 6:00 p.m. - Blair HS';
Events[281][3] = '/schools/studserve/career/HBCU_Flyer.pdf';
Events[281][4] = 'Click the above link for registration information.';

Events[282][0] = '2/8/2012';
Events[282][1] = '2/15/2012';
Events[282][2] = '2/15 - APEX Meeting of Accepted/Wait-Listed Students, 7:00 p.m. - WJ Cafeteria';
Events[282][3] = '';
Events[282][4] = '';

Events[283][0] = '2/9/2012';
Events[283][1] = '2/16/2012';
Events[283][2] = '2/16 - Swim &amp; Dive-4A West Regional Diving Championship, 2:00 p.m. - MAC';
Events[283][3] = '';
Events[283][4] = '';

Events[285][0] = '2/10/2012';
Events[285][1] = '2/18/2012';
Events[285][2] = '2/17-18 - V Wrestling-MCPS Championships, 3:00 p.m. Friday and 8:00 a.m. Saturday - Blair HS';
Events[285][3] = '';
Events[285][4] = '';
/*
Events[286][0] = '2/10/2012';
Events[286][1] = '2/17/2012';
Events[286][2] = '2/17 - Historically Black Colleges &amp; Universities (HBCU) College Fair (Snow Date), 6:00 p.m. - Blair HS';
Events[286][3] = '/schools/studserve/career/HBCU_Flyer.pdf';
Events[286][4] = 'Click the above link for registration information.';
*/
Events[288][0] = '2/11/2012';
Events[288][1] = '2/18/2012';
Events[288][2] = '2/18 - Swim &amp; Dive-4A West Regional Swimming Championship, 8:00 a.m. - ML King SC';
Events[288][3] = '';
Events[288][4] = '';

Events[293][0] = '2/14/2012';
Events[293][1] = '2/21/2012';
Events[293][2] = '2/21 - Registration with Freshmen &amp; ESOL 1';
Events[293][3] = '';
Events[293][4] = '';

Events[294][0] = '2/14/2012';
Events[294][1] = '2/21/2012';
Events[294][2] = '2/21 - Indoor Track-State Championships, 4:00 p.m. - PG Sportsplex';
Events[294][3] = '';
Events[294][4] = '';

Events[295][0] = '2/14/2012';
Events[295][1] = '2/21/2012';
Events[295][2] = '2/21 - Boys Basketball Senior Recognition, 6:45 p.m. - WJ Gym';
Events[295][3] = '';
Events[295][4] = '';

Events[296][0] = '2/14/2012';
Events[296][1] = '2/21/2012';
Events[296][2] = '2/21 - Girls Basketball Senior Recognition, 6:45 p.m. - WJ Gym';
Events[296][3] = '';
Events[296][4] = '';

Events[297][0] = '2/14/2012';
Events[297][1] = '2/21/2012';
Events[297][2] = '2/21 - PTSA Meeting, 7:30 p.m. - WJ Media Center';
Events[297][3] = '/schools/wjhs/orgs/ptsa/';
Events[297][4] = '';

Events[298][0] = '2/15/2012';
Events[298][1] = '2/22/2012';
Events[298][2] = '2/22 - Registration with Freshmen &amp; ESOL 1';
Events[298][3] = '';
Events[298][4] = '';

Events[300][0] = '2/15/2012';
Events[300][1] = '2/22/2012';
Events[300][2] = '2/22 - Black History Assembly Rehearsal, 2:30 p.m. - Auditorium';
Events[300][3] = '';
Events[300][4] = '';
/*
Events[301][0] = '2/15/2012';
Events[301][1] = '2/22/2012';
Events[301][2] = '2/22 - APEX Meeting of Accepted/Wait-Listed Students (snow date), 7:00 p.m. - WJ Cafeteria';
Events[301][3] = '';
Events[301][4] = '';
*/
Events[302][0] = '2/16/2012';
Events[302][1] = '2/23/2012';
Events[302][2] = '2/23 - APEX deadline for student acceptance';
Events[302][3] = '';
Events[302][4] = '';

Events[304][0] = '2/16/2012';
Events[304][1] = '2/23/2012';
Events[304][2] = '2/23 - Black History Assembly Rehearsal, 2:30 p.m. - Auditorium';
Events[304][3] = '';
Events[304][4] = '';

Events[306][0] = '2/17/2012';
Events[306][1] = '2/24/2012';
Events[306][2] = '2/24 - <i>The Pitch</i> Distribution Date';
Events[306][3] = 'http://www.wjpitch.com';
Events[306][4] = 'The print edition of <i>The Pitch</i> is distributed to student through 1st period classes. Click the above link to read <i>The Pitch</i> Online';

Events[308][0] = '2/17/2012';
Events[308][1] = '2/25/2012';
Events[308][2] = '2/24-25 - V Wrestling-4A West Regional Championships, 4:00 p.m. Friday and 8:00 a.m. Saturday - Sherwood HS';
Events[308][3] = '';
Events[308][4] = '';

Events[309][0] = '2/18/2012';
Events[309][1] = '2/25/2012';
Events[309][2] = 'Swim &amp; Dive-State Championships: Diving - 2/24, 5:00 p.m. &amp; Swimming - 2/25, 10:00 a.m. - UMCP';
Events[309][3] = '';
Events[309][4] = '';

Events[311][0] = '2/18/2012';
Events[311][1] = '2/25/2012';
Events[311][2] = '2/25 - Community Cupcakes Event, 7:00 p.m. - WJ Auditorium';
Events[311][3] = '';
Events[311][4] = '';

Events[312][0] = '2/20/2012';
Events[312][1] = '2/27/2012';
Events[312][2] = '2/27 - GAC Sponsors College Planning for Students with Learning Differences, 7:30 p.m. - WJ Cafeteria';
Events[312][3] = '';
Events[312][4] = '';

Events[315][0] = '2/29/2012';
Events[315][1] = '2/29/2012';
Events[315][2] = '2/29 - Booster Club Used Book Sale-LAST DAY For Contributions';
Events[315][3] = '';
Events[315][4] = '';

Events[316][0] = '2/22/2012';
Events[316][1] = '2/29/2012';
Events[316][2] = '2/29 - Big Train Submission Deadline';
Events[316][3] = '/schools/wjhs/orgs/ptsa/bigtrain/submit.shtm';
Events[316][4] = '';

Events[317][0] = '2/22/2012';
Events[317][1] = '3/1/2012';
Events[317][2] = '2/29-3/1 - Debate League Championship, 2:30 p.m. - Walter Johnson HS';
Events[317][3] = '/schools/wjhs/orgs/debate';
Events[317][4] = '';

Events[318][0] = '2/23/2012';
Events[318][1] = '3/1/2012';
Events[318][2] = '3/1 - Spring Sports Begin';
Events[318][3] = '';
Events[318][4] = '';

Events[319][0] = '2/23/2012';
Events[319][1] = '3/1/2012';
Events[319][2] = '3/1 - MD Deadline to File FAFSA for College Financial Aid';
Events[319][3] = '';
Events[319][4] = '';

Events[321][0] = '2/24/2012';
Events[321][1] = '3/2/2012';
Events[321][2] = '3/2 - Interim Due Date for Teachers';
Events[321][3] = '';
Events[321][4] = '';

Events[323][0] = '2/24/2012';
Events[323][1] = '3/2/2012';
Events[323][2] = '3/2 - WJ Hosts "Attendance Matters" Cluster Meeting, 8:30 a.m. - Media Center Conf Rm';
Events[323][3] = '';
Events[323][4] = '';

Events[324][0] = '2/24/2012';
Events[324][1] = '3/2/2012';
Events[324][2] = '3/2 - Booster Club Used Book Sale Set-up, 12:00 p.m. - WJ Cafeteria';
Events[324][3] = '';
Events[324][4] = '';

Events[325][0] = '2/24/2012';
Events[325][1] = '3/2/2012';
Events[325][2] = '3/2 - V Wrestling-State Championships, 12:00 p.m. - Cole Field House-UMCP';
Events[325][3] = '';
Events[325][4] = '';

Events[326][0] = '2/24/2012';
Events[326][1] = '3/2/2012';
Events[326][2] = '3/2 - Mr. &amp; Ms. WJ Auditions, 1:00 p.m. - WJ Student Commons';
Events[326][3] = '';
Events[326][4] = '';

Events[327][0] = '2/25/2012';
Events[327][1] = '3/3/2012';
Events[327][2] = '3/3 - V Wrestling-State Championships, 8:00 a.m. - Cole Field House-UMCP';
Events[327][3] = '';
Events[327][4] = '';

Events[328][0] = '2/25/2012';
Events[328][1] = '3/3/2012';
Events[328][2] = '3/3 - Booster Club Used Book Sale, 9:00 a.m. - WJ Cafeteria';
Events[328][3] = '';
Events[328][4] = '';

Events[329][0] = '2/26/2012';
Events[329][1] = '3/4/2012';
Events[329][2] = '3/4 - Booster Club Used Book Sale, 9:00 a.m. - WJ Cafeteria';
Events[329][3] = '';
Events[329][4] = '';

Events[330][0] = '2/26/2012';
Events[330][1] = '3/4/2012';
Events[330][2] = '3/4 - Swim &amp; Dive-Team Banquet, 5:30 p.m. - WJ Student Commons';
Events[330][3] = '';
Events[330][4] = '';

Events[331][0] = '2/27/2012';
Events[331][1] = '3/5/2012';
Events[331][2] = '3/5 - No Homework Assigned Today Due Tomorrow';
Events[331][3] = '';
Events[331][4] = '';

Events[332][0] = '2/27/2012';
Events[332][1] = '3/5/2012';
Events[332][2] = '3/5 - Staff Meeting, 2:30 p.m. - WJ Cafeteria';
Events[332][3] = '';
Events[332][4] = '';

Events[333][0] = '2/27/2012';
Events[333][1] = '3/5/2012';
Events[333][2] = '3/5 - Winter Sports Awards, 6:45 p.m. - WJ Auditorium';
Events[333][3] = '';
Events[333][4] = '';

Events[334][0] = '2/28/2012';
Events[334][1] = '3/6/2012';
Events[334][2] = '3/6 - Interims Mailed From Central Office';
Events[334][3] = '';
Events[334][4] = '';

Events[335][0] = '2/29/2012';
Events[335][1] = '3/7/2012';
Events[335][2] = '3/7 - Mr. &amp; Ms. WJ Rehearsal, 2:30 p.m. - WJ Auditorium';
Events[335][3] = '';
Events[335][4] = '';

Events[336][0] = '2/29/2012';
Events[336][1] = '3/7/2012';
Events[336][2] = '3/7 - WJ Ed Foundation Meeting, 7:30 p.m. - WJ Media Center';
Events[336][3] = 'http://www.wjedfoundation.org';
Events[336][4] = '';

Events[337][0] = '3/1/2012';
Events[337][1] = '3/8/2012';
Events[337][2] = '3/8 - SGA Blood Drive for students/staff/parents, 7:30 a.m. - Small Gym';
Events[337][3] = '/schools/wjhs/orgs/sga/blood.shtm';
Events[337][4] = 'Click the above link for more information and the student permission form required for 16 year olds. Appointments can be scheduled in the Student ' +
                 'Commons during lunch or by <a href="javascript: email(\'blooddrive\', \'walterjohnson.com\');">email to Mr. Atencio</a>';

Events[338][0] = '3/2/2012';
Events[338][1] = '3/9/2012';
Events[338][2] = '3/9 - GAC Meeting, 8:15 a.m. - WJ Staff Dining Room';
Events[338][3] = '/schools/wjhs/orgs/ptsa/guidance';
Events[338][4] = '';

Events[339][0] = '3/2/2012';
Events[339][1] = '3/9/2012';
Events[339][2] = '3/9 - Asian Assembly Rehearsal, 2:30 p.m. - Auditorium';
Events[339][3] = '';
Events[339][4] = '';

Events[340][0] = '3/2/2012';
Events[340][1] = '3/10/2012';
Events[340][2] = '3/9-10 - WJ Symphonic Orchestra Performs in the National Orchestra Cup hosted at Juilliard - New York, NY Ð Alice Tully Hall';
Events[340][3] = '';
Events[340][4] = '';

Events[341][0] = '3/3/2012';
Events[341][1] = '3/10/2012';
Events[341][2] = '3/10 - SAT Test, 8:00 a.m. - WJ';
Events[341][3] = '/schools/wjhs/studserve/career/SATs.shtm';
Events[341][4] = '';

Events[342][0]   = '2/25/2012';
Events[342][1]   = '3/10/2012';
Events[342][2]   = '3/10 - WJ Crew Team Silent Auction, 6:00-10:00 p.m. - WJ Cafeteria';
Events[342][3]   = 'http://www.walterjohnsoncrew.org';
Events[342][4]   = 'WJ Crew invites you to join them for an opportunity to bid on some very exciting auction items. Admission is FREE!!';

Events[344][0] = '3/5/2012';
Events[344][1] = '3/12/2012';
Events[344][2] = '3/12 - Set-Up for MCPS Orchestra Festival, 4:00 p.m. - WJ Auditorium';
Events[344][3] = '';
Events[344][4] = '';

Events[345][0] = '3/6/2012';
Events[345][1] = '3/13/2012';
Events[345][2] = '3/13 - WJ Hosts MCPS Orchestra Festival, 7:00 a.m. - WJ Auditorium';
Events[345][3] = '';
Events[345][4] = '';

Events[346][0] = '3/7/2012';
Events[346][1] = '3/15/2012';
Events[346][2] = '3/14-15 - Mr. &amp; Ms. WJ Rehearsal, 2:30 p.m. - WJ Auditorium';
Events[346][3] = '';
Events[346][4] = '';

Events[347][0] = '3/7/2012';
Events[347][1] = '3/14/2012';
Events[347][2] = '3/14 - Wrestling Team Banquet, 6:00 p.m. - Cafeteria';
Events[347][3] = '';
Events[347][4] = '';

Events[348][0] = '3/7/2012';
Events[348][1] = '3/14/2012';
Events[348][2] = '3/14 - Booster Club Meeting, 7:30 p.m. - WJ Media Center';
Events[348][3] = 'http://www.wjboosterclub.com';
Events[348][4] = '';

Events[349][0] = '3/8/2012';
Events[349][1] = '3/15/2012';
Events[349][2] = '3/15 - National Latin Exam, 7:25 a.m. - WJ Cafeteria';
Events[349][3] = '';
Events[349][4] = '';

Events[351][0] = '3/8/2012';
Events[351][1] = '3/15/2012';
Events[351][2] = '3/15 - Spring Sports Parent/Coaches Meeting, 7:00 p.m. - WJ Student Commons';
Events[351][3] = '';
Events[351][4] = '';

Events[352][0] = '3/9/2012';
Events[352][1] = '3/16/2012';
Events[352][2] = '3/16 - <i>The Pitch</i> Distribution Date';
Events[352][3]  = 'http://www.wjpitch.com';
Events[352][4]  = 'The print edition of <i>The Pitch</i> is distributed to student through 1st period classes. Click the above link to read <i>The Pitch</i> Online';

Events[353][0] = '3/5/2012';
Events[353][1] = '3/16/2012';
Events[353][2] = '3/12-3/16 Spring Sports Spirit Week-Monday: Lax Bro Day; Tuesday: Would You Be My Friend If... Day; Wednesday: Rock Star Day; Thursday: Disney Day; ' +
                 'Friday: Color Wars - Freshman-gray, Sophomores-white, Juniors-black, Seniors-green<br>' +
                 '3/16- Spring Sports Pep Rally - Special Bell Schedule';
Events[353][3] = '/schools/wjhs/information/bells/assembly.shtm';
Events[353][4] = '';

Events[354][0] = '3/9/2012';
Events[354][1] = '3/16/2012';
Events[354][2] = '3/16 - Asian Assembly Rehearsal, 2:30 p.m. - Auditorium';
Events[354][3] = '';
Events[354][4] = '';

Events[355][0] = '3/9/2012';
Events[355][1] = '3/16/2012';
Events[355][2] = '3/16 - Mr. &amp; Ms. WJ, 7:30 p.m. - WJ Auditorium';
Events[355][3] = '';
Events[355][4] = '';

Events[356][0] = '3/12/2012';
Events[356][1] = '3/19/2012';
Events[356][2] = '3/19 - GAC Sponsors "Beach Week" Meeting, 7:30 p.m. - WJ Cafeteria';
Events[356][3] = '';
Events[356][4] = '';

Events[357][0] = '3/13/2012';
Events[357][1] = '3/20/2012';
Events[357][2] = '3/20 - PTSA Meeting, 7:30 p.m. - WJ Media Center';
Events[357][3] = '/schools/wjhs/orgs/ptsa/';
Events[357][4] = '';

Events[358][0] = '3/15/2012';
Events[358][1] = '3/22/2012';
Events[358][2] = '3/22 - Asian Assembly Rehearsal, 2:30 p.m. - Auditorium';
Events[358][3] = '';
Events[358][4] = '';

Events[361][0] = '3/16/2012';
Events[361][1] = '3/23/2012';
Events[361][2] = '3/23 - WJ Hosts N. Bethesda MS Staff/Student Basketball Game, 7:00 p.m. - WJ Gym';
Events[361][3] = '';
Events[361][4] = '';

Events[362][0] = '3/21/2012';
Events[362][1] = '3/28/2012';
Events[362][2] = '3/28 - Italy Trip Departs';
Events[362][3] = '';
Events[362][4] = '';

Events[363][0] = '3/21/2012';
Events[363][1] = '3/28/2012';
Events[363][2] = '3/28 - Big Train Submission Deadline';
Events[363][3] = '/schools/wjhs/orgs/ptsa/bigtrain/submit.shtm';
Events[363][4] = '';

Events[364][0] = '3/22/2012';
Events[364][1] = '3/29/2012';
Events[364][2] = '3/29 - 3rd Marking Period Ends';
Events[364][3] = '';
Events[364][4] = '';

Events[365][0] = '3/23/2012';
Events[365][1] = '3/30/2012';
Events[365][2] = '3/30 - Last Day to Submit 3rd Marking Period Obligations - School Bank';
Events[365][3] = '';
Events[365][4] = '';

Events[366][0]   = '3/19/2012';
Events[366][1]   = '4/1/2012';
Events[366][2]   = '4/1 - Booster Club Mulch Sale Order Deadline';
Events[366][3]   = 'http://www.wjmulchsale.com';
Events[366][4]   = 'Home delivery April 9th to zip codes 20814, 20817, 20852, 20895 &amp; 20896 or pick-up at WJ';

Events[371][0] = '3/29/2012';
Events[371][1] = '4/5/2012';
Events[371][2] = '4/5 - Passover Begins at Sundown-No Sports after 4:00 p.m.';
Events[371][3] = '';
Events[371][4] = '';

Events[373][0] = '3/30/2012';
Events[373][1] = '4/6/2012';
Events[373][2] = '4/6 - Passover';
Events[373][3] = '';
Events[373][4] = '';

Events[375][0] = '3/31/2012';
Events[375][1] = '4/7/2012';
Events[375][2] = '4/7 - Italy Trip Returns';
Events[375][3] = '';
Events[375][4] = '';

Events[377][0] = '4/8/2012';
Events[377][1] = '4/10/2012';
Events[377][2] = '4/10 - Classes Resume/4th Marking Period Begins';
Events[377][3] = '';
Events[377][4] = '';

Events[378][0] = '4/10/2012';
Events[378][1] = '4/17/2012';
Events[378][2] = '4/10-4/18 - French Honor Society Applications Accepted - www.walterjohnson.com/orgs/frhonors/';
Events[378][3] = '';
Events[378][4] = '';

Events[379][0] = '4/10/2012';
Events[379][1] = '5/13/2012';
Events[379][2] = '4/10-5/14 - Italian Honor Society Applications Accepted Through May 14th - www.walterjohnson.com/orgs/ithonors/';
Events[379][3] = '';
Events[379][4] = '';

Events[381][0] = '4/10/2012';
Events[381][1] = '5/13/2012';
Events[381][2] = '4/10-5/14 - Spanish Honor Society Applications Accepted Through May 14th - www.walterjohnson.com/orgs/sphonors/';
Events[381][3] = '';
Events[381][4] = '';

Events[382][0] = '4/3/2012';
Events[382][1] = '4/10/2012';
Events[382][2] = '4/10 - College Info Night for Juniors &amp; Parents, 7:00 p.m. - WJ Cafeteria';
Events[382][3] = '';
Events[382][4] = '';

Events[383][0]   = '4/4/2012';
Events[383][1]   = '4/11/2012';
Events[383][2]   = '4/11 - Psychology Fair, 7:25-10:30 a.m. - Cafeteria'; 
Events[383][3]   = '';
Events[383][4]   = '';

Events[384][0] = '4/4/2012';
Events[384][1] = '4/11/2012';
Events[384][2] = '4/11 - Booster Club Meeting, 7:30 p.m. - Media Center';
Events[384][3] = 'http://www.wjboosterclub.com';
Events[384][4] = '';

Events[386][0] = '4/5/2012';
Events[386][1] = '4/12/2012';
Events[386][2] = '4/12 - ESOL LAS Testing, 7:25 a.m. - WJ Auditorium';
Events[386][3] = '';
Events[386][4] = '';

Events[387][0] = '4/1/2012';
Events[387][1] = '4/13/2012';
Events[387][2] = '4/13 - Permission Slip Deadline - NACAC College Fair Field Trip for Juniors - To Ms. Evans in the College &amp; Career Center';
Events[387][3] = '';
Events[387][4] = 'Juniors wishing to attend the fair must return parent permission slips to Ms. Evans by the deadline.';

Events[389][0] = '4/6/2012';
Events[389][1] = '4/13/2012';
Events[389][2] = '4/13 - GAC Meeting, 8:15 a.m. - WJ Staff Dining Room';
Events[389][3] = '/schools/wjhs/orgs/ptsa/guidance';
Events[389][4] = '';

Events[390][0] = '4/7/2012';
Events[390][1] = '4/14/2012';
Events[390][2] = '4/14 - ACT Test - NOT at WJ';
Events[390][3] = '/schools/wjhs/studserve/career/ACTs.shtm';
Events[390][4] = '';

Events[392][0] = '4/7/2012';
Events[392][1] = '4/14/2012';
Events[392][2] = '4/14 - Booster Club Mulch Sale Home Deliveries/Pick-Up, 7:00 a.m. - WJ Cafeteria';
Events[392][3] = 'http://www.wjmulchsale.com';
Events[392][4] = '';
Events[392][4] = '';

Events[397][0] = '4/9/2012';
Events[397][1] = '4/16/2012';
Events[397][2] = '4/16 - HSA English 10 Exam for Specific Seniors';
Events[397][3] = '';
Events[397][4] = '';

Events[398][0] = '4/9/2012';
Events[398][1] = '4/16/2012';
Events[398][2] = '4/16 - Staff Meeting, 2:30 p.m. - WJ Cafeteria';
Events[398][3] = '';
Events[398][4] = '';

Events[399][0] = '4/10/2012';
Events[399][1] = '4/17/2012';
Events[399][2] = '4/17 - Juniors Receive <i>Compass Points for College Counseling</i> through English Classes';
Events[399][3] = '';
Events[399][4] = '';

Events[401][0] = '4/10/2012';
Events[401][1] = '4/18/2012';
Events[401][2] = '4/17-18 - HSA Biology Exam for Specific Seniors';
Events[401][3] = '';
Events[401][4] = '';

Events[402][0] = '4/10/2012';
Events[402][1] = '4/17/2012';
Events[402][2] = '4/17 - PTSA Meeting, 7:30 p.m. - WJ Media Center';
Events[402][3] = '/schools/wjhs/orgs/ptsa/';
Events[402][4] = '';

Events[403][0] = '4/18/2012';
Events[403][1] = '4/18/2012';
Events[403][2] = '4/18 - LAST DAY for French Honor Society Applications - www.walterjohnson.com/orgs/frhonors/';
Events[403][3] = '';
Events[403][4] = '';

Events[404][0] = '4/11/2012';
Events[404][1] = '4/18/2012';
Events[404][2] = '4/18 - HSA Algebra Exam for Specific Seniors';
Events[404][3] = '';
Events[404][4] = '';

Events[406][0] = '4/12/2012';
Events[406][1] = '4/19/2012';
Events[406][2] = '4/19 - HSA Make-up exams for Specific Seniors';
Events[406][3] = '';
Events[406][4] = '';

Events[407][0] = '4/12/2012';
Events[407][1] = '4/19/2012';
Events[407][2] = '4/19 - PTSA Sponsors Freshman Parent Connection, 7:30 p.m. - WJ Student Commons';
Events[407][3] = '/schools/wjhs/orgs/ptsa/health_and_safety/parent_connect.shtm';
Events[407][4] = '';

Events[408][0] = '4/13/2012';
Events[408][1] = '4/20/2012';
Events[408][2] = '4/20 - <i>The Pitch</i> Distribution Date';
Events[408][3]  = 'http://www.wjpitch.com';
Events[408][4]  = 'The print edition of <i>The Pitch</i> is distributed to student through 1st period classes. Click the above link to read <i>The Pitch</i> Online';

Events[409][0] = '4/13/2012';
Events[409][1] = '4/20/2012';
Events[409][2] = '4/20 - Spring Musical Rehearsal, 7:25 a.m. - Auditorium';
Events[409][3] = '';
Events[409][4] = '';

Events[410][0] = '4/7/2012';
Events[410][1] = '4/21/2012';
Events[410][2] = '4/20, 21, 27 &amp; 28 - WJ S*T*A*G*E Presents "Les Miserables", 7:30 p.m. - WJ Auditorium';
Events[410][3] = '';
Events[410][4] = '';

Events[412][0] = '4/16/2012';
Events[412][1] = '4/27/2012';
Events[412][2] = '4/23-27 - Administrative Professionals Week-Thank You WJ Staff!';
Events[412][3] = '';
Events[412][4] = '';

Events[416][0] = '4/16/2012';
Events[416][1] = '4/23/2012';
Events[416][2] = '4/23 - Junior Class \"Family Connection\" Parent Meeting, 7:30 p.m. - WJ Cafeteria';
Events[416][3] = '';
Events[416][4] = 'Junior parents should attend this meeting on the how-to\'s of using the Naviance \"Family Connection\" College Planning Tool';
 
Events[417][0] = '4/17/2012';
Events[417][1] = '4/24/2012';
Events[417][2] = '4/24 - SMOB Election Video Televised - Special Bell Schedule';
Events[417][3] = '/schools/wjhs/information/bells/assembly.shtm';
Events[417][4] = '';

Events[419][0] = '4/17/2012';
Events[419][1] = '4/24/2012';
Events[419][2] = '4/24 - Boys Tennis-Senior Recognition, 3:15 p.m. - WJ Tennis Courts';
Events[419][3] = '';
Events[419][4] = '';

Events[420][0] = '4/17/2012';
Events[420][1] = '4/24/2012';
Events[420][2] = '4/24 - NACAC College Fair-Free to Parents &amp; Students, 6:30-8:30 p.m. - Montgomery County Fairgrounds';
Events[420][3] = 'http://www.nacacnet.org/EventsTraining/CollegeFairs/ncf/Spring/Pages/MontgomeryCountyNCF.aspx';
Events[420][4] = '';

Events[421][0] = '4/18/2012';
Events[421][1] = '4/25/2012';
Events[421][2] = '4/25 - Big Train Submission Deadline';
Events[421][3] = '/schools/wjhs/orgs/ptsa/bigtrain/submit.shtm';
Events[421][4] = '';

Events[422][0] = '4/18/2012';
Events[422][1] = '4/25/2012';
Events[422][2] = '4/25 - SMOB Election';
Events[422][3] = '';
Events[422][4] = '';

Events[423][0] = '4/14/2012';
Events[423][1] = '4/25/2012';
Events[423][2] = '4/25 - NACAC College Fair Field Trip for Juniors, 9:30 a.m. - Montgomery County Fairgrounds';
Events[423][3] = '';
Events[423][4] = '';

Events[424][0] = '4/18/2012';
Events[424][1] = '4/25/2012';
Events[424][2] = '4/25 - "Les Mis" Brush-Up, 5:00 p.m. - WJ Auditorium';
Events[424][3] = '';
Events[424][4] = '';

Events[425][0] = '4/18/2012';
Events[425][1] = '4/25/2012';
Events[425][2] = '4/25 - Boys &amp; Coed Volleyball Senior Recognition, 6:30 p.m. - WJ Gym';
Events[425][3] = '';
Events[425][4] = '';

Events[427][0] = '4/19/2012';
Events[427][1] = '4/26/2012';
Events[427][2] = '4/26 - Bring Your Child to Work Day';
Events[427][3] = '';
Events[427][4] = '';

Events[429][0] = '4/19/2012';
Events[429][1] = '4/26/2012';
Events[429][2] = '4/26 - GAC Sponsors "Career Day", 9:00 a.m. - WJ Student Commons';
Events[429][3] = '';
Events[429][4] = '';

Events[431][0] = '4/22/2012';
Events[431][1] = '4/28/2012';
Events[431][2] = '4/27 &amp; 28 - WJ S*T*A*G*E Presents "Les Miserables", 7:30 p.m. - WJ Auditorium';
Events[431][3] = '';
Events[431][4] = '';

Events[434][0] = '4/23/2012';
Events[434][1] = '4/30/2012';
Events[434][2] = '4/30 - Last Day for Fundraisers';
Events[434][3] = '';
Events[434][4] = '';

Events[435][0]   = '4/23/2012';
Events[435][1]   = '5/11/2012';
Events[435][2]   = '4/30-5/11 - Prom Tickets On Sale'; 
Events[435][3]   = '/schools/wjhs/orgs/classes/senior/prom.shtm';
Events[435][4]   = 'Tickets on sale during lunch and on select days after school. Click the above link for more information about Prom and to print the forms required for seniors ' +
                   'bringing guests who do not attend WJ. Obligations must be cleared in order ' +
                   'to buy Prom tickets. Seniors taking AP exams, buy your Prom tickets before May 7th!';

Events[436][0] = '4/25/2012';
Events[436][1] = '5/2/2012';
Events[436][2] = '5/2 - No Homework Assigned Today Due Tomorrow';
Events[436][3] = '';
Events[436][4] = '';

Events[437][0] = '4/25/2012';
Events[437][1] = '5/2/2012';
Events[437][2] = '5/2 - Senior Interim Due Date for Teachers';
Events[437][3] = '';
Events[437][4] = '';

Events[438][0] = '4/25/2012';
Events[438][1] = '5/2/2012';
Events[438][2] = '5/2 - Competitive Club Awards Night, 7:00 p.m. - WJ Cafeteria';
Events[438][3] = '';
Events[438][4] = '';

Events[439][0] = '4/25/2012';
Events[439][1] = '5/2/2012';
Events[439][2] = '5/2 - WJ Ed Foundation Meeting, 7:30 p.m. - WJ Media Center';
Events[439][3] = 'http://www.wjedfoundation.org';
Events[439][4] = '';

Events[441][0] = '4/26/2012';
Events[441][1] = '5/3/2012';
Events[441][2] = '5/3 - Internship Evening of Excellence, 7:00 p.m. - WJ Student Commons';
Events[441][3] = '';
Events[441][4] = '';

Events[443][0] = '4/27/2012';
Events[443][1] = '5/4/2012';
Events[443][2] = '5/4 - WJ Hosts "Attendance Matters" Cluster Meeting, 8:30 a.m. - Media Center Conf Rm';
Events[443][3] = '';
Events[443][4] = '';

Events[445][0] = '4/28/2012';
Events[445][1] = '5/5/2012';
Events[445][2] = '5/5 - SAT Test - NOT at WJ';
Events[445][3] = '/schools/wjhs/studserve/career/SATs.shtm';
Events[445][4] = '';

Events[446][0] = '4/28/2012';
Events[446][1] = '5/6/2012';
Events[446][2] = '5/5-6 - WJ Crew Annual Plant Sale, 8:00 a.m. - Bus Loop-Rain or Shine';
Events[446][3] = '';
Events[446][4] = '';

Events[451][0] = '5/1/2012';
Events[451][1] = '5/11/2012';
Events[451][2] = '5/7-11 - Teacher Appreciation Week-Thank you WJ Faculty!';
Events[451][3] = '';
Events[451][4] = '';

Events[452][0] = '5/1/2012';
Events[452][1] = '5/11/2012';
Events[452][2] = '5/7-11 - Child Nutrition Employee Appreciation Week-Thank You Cafeteria Staff!';
Events[452][3] = '';
Events[452][4] = '';

Events[453][0] = '4/30/2012';
Events[453][1] = '5/7/2012';
Events[453][2] = '5/7-5/18 - AP Exams';
Events[453][3] = '';
Events[453][4] = '';

Events[456][0] = '4/30/2012';
Events[456][1] = '5/7/2012';
Events[456][2] = '5/7 - Staff Meeting, 2:30 p.m. - WJ Cafeteria';
Events[456][3] = '';
Events[456][4] = '';

Events[457][0] = '4/30/2012';
Events[457][1] = '5/7/2012';
Events[457][2] = '5/7 - Baseball Senior Recognition, 5:00 p.m. - WJ Field';
Events[457][3] = '';
Events[457][4] = '';

Events[458][0] = '4/30/2012';
Events[458][1] = '5/7/2012';
Events[458][2] = '5/7 - Softball Senior Recognition, 6:45 p.m. - WJ Softball Field';
Events[458][3] = '';
Events[458][4] = '';

Events[463][0] = '5/1/2012';
Events[463][1] = '5/8/2012';
Events[463][2] = '5/8 - Gymnastics-MCPS Championship at B-CC, 5:30 p.m. - B-CC HS';
Events[463][3] = '';
Events[463][4] = '';

Events[464][0] = '5/1/2012';
Events[464][1] = '5/8/2012';
Events[464][2] = '5/8 - Boys Lacrosse Senior Recognition, 6:30 p.m. - WJ Stadium';
Events[464][3] = '';
Events[464][4] = '';

Events[465][0] = '5/1/2012';
Events[465][1] = '5/8/2012';
Events[465][2] = '5/8 - Girls Lacrosse Senior Recognition, 6:45 p.m. - WJ Stadium';
Events[465][3] = '';
Events[465][4] = '';

Events[467][0] = '5/2/2012';
Events[467][1] = '5/9/2012';
Events[467][2] = '5/9 - Senior Interims Mailed From Central Office';
Events[467][3] = '';
Events[467][4] = '';

Events[468][0]   = '5/2/2012';
Events[468][1]   = '5/9/2012';
Events[468][2]   = '5/9 - WJ  Hosts Track & Field-County Championship, 3:30 p.m.';
Events[468][3]   = '';
Events[468][4]   = '';
 
Events[470][0] = '5/2/2012';
Events[470][1] = '5/9/2012';
Events[470][2] = '5/9 - Booster Club Meeting, 7:30 p.m. - WJ Media Center';
Events[470][3] = 'http://www.wjboosterclub.com';
Events[470][4] = '';

Events[472][0] = '5/3/2012';
Events[472][1] = '5/10/2012';
Events[472][2] = '5/10 - Undergraduate Interim Due Date for Teachers';
Events[472][3] = '';
Events[472][4] = '';

Events[476][0] = '5/3/2012';
Events[476][1] = '5/10/2012';
Events[476][2] = '5/10 - Gymnastics-Varsity B Championships at Blair, 5:30 p.m. - Blair HS';
Events[476][3] = '';
Events[476][4] = '';

Events[477][0] = '5/3/2012';
Events[477][1] = '5/10/2012';
Events[477][2] = '5/10 - PTSA Sponsors Sophomore &amp; Junior Parent Connection, 7:30 p.m. - WJ Student Commons';
Events[477][3] = '/schools/wjhs/orgs/ptsa/health_and_safety/parent_connect.shtm';
Events[477][4] = '';

Events[478][0] = '5/4/2012';
Events[478][1] = '5/11/2012';
Events[478][2] = '5/11 - SSL Senior forms due to Main Office';
Events[478][3] = '/schools/wjhs/ssl/';
Events[478][4] = '';

Events[481][0] = '5/4/2012';
Events[481][1] = '5/11/2012';
Events[481][2] = '5/11 - GAC Meeting, 8:15 a.m. - WJ Staff Dining Room';
Events[481][3] = '/schools/wjhs/orgs/ptsa/guidance';
Events[481][4] = '';

Events[482][0]   = '5/5/2012';
Events[482][1]   = '5/12/2012';
Events[482][2]   = '5/12 - MCPS Track & Field Varsity B Meet, 8:00 a.m. - Wootton HS';
Events[482][3]   = '';
Events[482][4]   = '';

Events[484][0] = '5/6/2012';
Events[484][1] = '5/13/2012';
Events[484][2] = '5/13 - Mother\'s Day';
Events[484][3] = '';
Events[484][4] = '';

Events[485][0] = '5/14/2012';
Events[485][1] = '5/14/2012';
Events[485][2] = '5/14 - LAST DAY for Spanish Honor Society Applications - www.walterjohnson.com/orgs/sphonors/';
Events[485][3] = '';
Events[485][4] = '';

Events[486][0] = '5/14/2012';
Events[486][1] = '5/14/2012';
Events[486][2] = '5/14 - LAST DAY for Italian Honor Society Applications - www.walterjohnson.com/orgs/ithonors/';
Events[486][3] = '';
Events[486][4] = '';

Events[495][0] = '5/8/2012';
Events[495][1] = '5/15/2012';
Events[495][2] = '5/15 - Senior Parent Volunteer Recognition, 6:30 p.m. - WJ Media Center';
Events[495][3] = '';
Events[495][4] = '';

Events[496][0] = '5/8/2012';
Events[496][1] = '5/15/2012';
Events[496][2] = '5/15 - PTSA Meeting, 7:30 p.m. - WJ Media Center';
Events[496][3] = '/schools/wjhs/orgs/ptsa/';
Events[496][4] = '';

Events[497][0]  = '5/9/2012';
Events[497][1]  = '5/17/2012';
Events[497][2]  = '5/16-5/17 - Track & Field-4A Regional Championship, 4:00 p.m. - Location TBA';
Events[497][3]  = '';
Events[497][4]  = '';
 
Events[499][0] = '5/10/2012';
Events[499][1] = '5/17/2012';
Events[499][2] = '5/17 - Undergraduate Interims Mailed From Central Office';
Events[499][3] = '';
Events[499][4] = '';

Events[506][0] = '5/11/2012';
Events[506][1] = '5/18/2012';
Events[506][2] = '5/18 - Senior Prom, 8:30 p.m. - National Press Club';
Events[506][3] = '';
Events[506][4] = '';

Events[507][0] = '5/12/2012';
Events[507][1] = '5/19/2012';
Events[507][2] = '5/19 - After Prom Breakfast, 12:30 a.m. - WJ Cafeteria';
Events[507][3] = '';
Events[507][4] = '';

Events[508][0] = '5/13/2012';
Events[508][1] = '5/21/2012';
Events[508][2] = '5/20-21 - Fine Arts Festival  Set-up - WJ Small Gym';
Events[508][3] = '';
Events[508][4] = '';

Events[510][0] = '5/14/2012';
Events[510][1] = '5/21/2012';
Events[510][2] = '5/21 - No Homework Assigned Today Due Tomorrow';
Events[510][3] = '';
Events[510][4] = '';

Events[512][0] = '5/14/2012';
Events[512][1] = '5/21/2012';
Events[512][2] = '5/21 - Spring Sports Awards, 6:45 p.m. - WJ Auditorium';
Events[512][3] = '';
Events[512][4] = '';

Events[513][0] = '5/15/2012';
Events[513][1] = '5/24/2012';
Events[513][2] = '5/22-24 - Fine Arts Festival - WJ Small Gym';
Events[513][3] = '';
Events[513][4] = '';

Events[514][0] = '5/15/2012';
Events[514][1] = '5/22/2012';
Events[514][2] = '5/22 - No Homework Assigned Today Due Tomorrow';
Events[514][3] = '';
Events[514][4] = '';

Events[518][0] = '5/15/2012';
Events[518][1] = '5/24/2012';
Events[518][2] = '5/22-24 - Fine Arts Festival Evening Opening, 6:00 p.m. - WJ Small Gym';
Events[518][3] = '';
Events[518][4] = '';

Events[519][0] = '5/15/2012';
Events[519][1] = '5/22/2012';
Events[519][2] = '5/22 - Spring Choral Concert, 7:30 p.m. - WJ Auditorium';
Events[519][3] = '';
Events[519][4] = '';

Events[523][0] = '5/16/2012';
Events[523][1] = '5/23/2012';
Events[523][2] = '5/23 - 5% Dinner, 6:00 p.m. - WJ Cafeteria';
Events[523][3] = '';
Events[523][4] = '';

Events[525][0] = '5/17/2012';
Events[525][1] = '5/24/2012';
Events[525][2] = '5/24 - No Homework Assigned Today Due Tomorrow';
Events[525][3] = '';
Events[525][4] = '';

Events[530][0] = '5/17/2012';
Events[530][1] = '5/24/2012';
Events[530][2] = '5/24 - Spring Instrumental Concert, 7:30 p.m. - WJ Auditorium';
Events[530][3] = '';
Events[530][4] = '';

Events[531][0] = '5/18/2012';
Events[531][1] = '5/25/2012';
Events[531][2] = '5/25 - Senior Last Day';
Events[531][3] = '';
Events[531][4] = '';

Events[533][0] = '5/18/2012';
Events[533][1] = '5/25/2012';
Events[533][2] = '5/25 - <i>The Pitch</i> Distribution Date';
Events[533][3]  = 'http://www.wjpitch.com';
Events[533][4]  = 'The print edition of <i>The Pitch</i> is distributed to student through 1st period classes. Click the above link to read <i>The Pitch</i> Online';

Events[534][0]   = '5/18/2012';
Events[534][1]   = '5/26/2012';
Events[534][2]   = '5/25-26 - Track & Field MD State Championships - Location TBA';
Events[534][3]   = '';
Events[534][4]   = '';
 
Events[535][0] = '5/18/2012';
Events[535][1] = '5/25/2012';
Events[535][2] = '5/25 - Most Improved Dinner, 7:00 p.m.';
Events[535][3] = '';
Events[535][4] = '';

Events[537][0] = '5/22/2012';
Events[537][1] = '5/29/2012';
Events[537][2] = '5/29 - No Homework Assigned Today Due Tomorrow';
Events[537][3] = '';
Events[537][4] = '';

Events[538][0] = '5/22/2012';
Events[538][1] = '5/29/2012';
Events[538][2] = '5/29 - Academic Awards Night, 7:00 p.m. - WJ Auditorium';
Events[538][3] = '';
Events[538][4] = '';

Events[539][0] = '5/23/2012';
Events[539][1] = '5/30/2012';
Events[539][2] = '5/30 - Big Train Submission Deadline';
Events[539][3] = '/schools/wjhs/orgs/ptsa/bigtrain/submit.shtm';
Events[539][4] = '';

Events[540][0] = '5/23/2012';
Events[540][1] = '5/30/2012';
Events[540][2] = '5/30 - Foreign Language Honor Society Inductions, 2:30 p.m. - WJ Cafeteria';
Events[540][3] = '';
Events[540][4] = '';

Events[541][0] = '5/23/2012';
Events[541][1] = '5/30/2012';
Events[541][2] = '5/30 - Choral Awards Night, 7:00 p.m. - WJ Cafeteria';
Events[541][3] = '';
Events[541][4] = '';

Events[542][0] = '5/24/2012';
Events[542][1] = '5/31/2012';
Events[542][2] = '5/31 - Commencement Day 2012-School CLOSED for Undergraduates!';
Events[542][3] = '';
Events[542][4] = '';

Events[543][0] = '5/24/2012';
Events[543][1] = '5/31/2012';
Events[543][2] = '5/31 - Class of 2012 Commencement, 7:00 p.m. - DAR Constitution Hall';
Events[543][3] = '';
Events[543][4] = '';

Events[544][0] = '5/25/2012';
Events[544][1] = '6/1/2012';
Events[544][2] = '6/1 - SSL Second semester forms due to Main Office';
Events[544][3] = '/schools/wjhs/ssl/';
Events[544][4] = '';

Events[545][0] = '5/25/2012';
Events[545][1] = '6/1/2012';
Events[545][2] = '6/1 - WJ Hosts "Attendance Matters" Cluster Meeting, 8:30 a.m. - Media Center Conf Rm';
Events[545][3] = '';
Events[545][4] = '';

Events[546][0] = '5/26/2012';
Events[546][1] = '6/2/2012';
Events[546][2] = '6/2 - SAT Test, 8:00 a.m. - WJ';
Events[546][3] = '/schools/wjhs/studserve/career/SATs.shtm';
Events[546][4] = '';

Events[548][0] = '5/28/2012';
Events[548][1] = '6/4/2012';
Events[548][2] = '6/4 - Instrumental Awards Night, 7:00 p.m. - WJ Cafeteria';
Events[548][3] = '';
Events[548][4] = '';

Events[554][0] = '5/30/2012';
Events[554][1] = '6/6/2012';
Events[554][2] = '6/6 - WJ Ed Foundation Meeting, 7:30 p.m. - WJ Media Center';
Events[554][3] = 'http://www.wjedfoundation.org';
Events[554][4] = '';

Events[557][0] = '6/1/2012';
Events[557][1] = '6/8/2012';
Events[557][2] = '6/8 - Last day for course request changes';
Events[557][3] = '';
Events[557][4] = '';

Events[560][0] = '6/2/2012';
Events[560][1] = '6/9/2012';
Events[560][2] = '6/9 - ACT Test - NOT at WJ';
Events[560][3] = '/schools/wjhs/studserve/career/ACTs.shtm';
Events[560][4] = '';

Events[563][0] = '6/5/2012';
Events[563][1] = '6/12/2012';
Events[563][2] = '6/12 - 4th Marking Period Ends/Semester 2 Ends';
Events[563][3] = '';
Events[563][4] = '';

Events[564][0] = '6/5/2012';
Events[564][1] = '6/12/2012';
Events[564][2] = '6/12 - Last Day for Students';
Events[564][3] = '';
Events[564][4] = '';

Events[566][0] = '6/5/2012';
Events[566][1] = '6/12/2012';
Events[566][2] = '6/12 - SGA Visits North Bethesda &amp; Tilden MS  to Welcome Rising 9th Graders, 8:30 a.m. - NBMS &amp; TMS Cafeteria';
Events[566][3] = '';
Events[566][4] = '';

Events[568][0] = '6/5/2012';
Events[568][1] = '6/12/2012';
Events[568][2] = '6/12 - Staff End of Year Luncheon, 12:00 p.m. - WJ Cafeteria';
Events[568][3] = '';
Events[568][4] = '';

Events[569][0] = '6/6/2012';
Events[569][1] = '6/13/2012';
Events[569][2] = '6/13 - Last Day for Teachers';
Events[569][3] = '';
Events[569][4] = '';

Events[570][0] = '6/6/2012';
Events[570][1] = '6/13/2012';
Events[570][2] = '6/13 - Last Day to Submit 2nd Semester Obligations - School Bank';
Events[570][3] = '';
Events[570][4] = '';

Events[571][0] = '6/10/2012';
Events[571][1] = '6/17/2012';
Events[571][2] = '6/17 - Father\'s Day';
Events[571][3] = '';
Events[571][4] = '';

Events[572][0] = '6/14/2012';
Events[572][1] = '6/21/2012';
Events[572][2] = '6/21 - Report Cards Mailed Home';
Events[572][3] = '';
Events[572][4] = '';

i = 0;

// The locations of the slashes in the date
var AFSlash, ALSlash, BFSlash, BLSlash;

// Starting date / ending date strings -- used for comparison
var sdate = "", edate = "";
var cdate;

    /* The Netscape and IE versions of Date::getYear() return different values.
     *   Netscape returns the number of years since 1900, while IE returns
     *   the four number year.
     *
     * NOTE: I have not tested this code on other browsers, so I am assuming
     *   that every other browser in existence returns the four number year. ;)
     */
    if(navigator.appName.toLowerCase().indexOf("netscape") != -1)
       cdate = parseInt(now.getYear()+1900) + "-";
//    else if(navigator.appName.toLowerCase().indexOf("internet explorer") != -1)
//       cdate = parseInt(now.getYear()) + "-";
    else
       cdate = parseInt(now.getYear()) + "-";

    if((now.getMonth()+1) < 10)
      cdate += "0";
    cdate += (parseInt(now.getMonth()+1) + "-");

    if(now.getDate() < 10)
      cdate += "0";
    cdate += parseInt(now.getDate());

document.write('<hr><h1>Coming up on the WJ Calendar...</h1>'); //write the category heading
document.write('<h1><a href="/schools/wjhs/information/fundraising/dining_calendar.shtm">WJ Dining Out Fundraiser Calendar</a></h1>'); //write the link to the dining out calendar

for(i=0; i<MAX_ELEM; i++)
{
if (Events[i][0] != "@")
{
  AFSlash = Events[i][0].indexOf("/");
  ALSlash = Events[i][0].lastIndexOf("/");
  BFSlash = Events[i][1].indexOf("/");
  BLSlash = Events[i][1].lastIndexOf("/");

  sdate = Events[i][0].substring(ALSlash+1,Events[i][0].length) + "-";

  if(parseInt(Events[i][0].substring(0,AFSlash)) < 10)
    sdate += "0";
  sdate += (Events[i][0].substring(0,AFSlash) + "-");

  if(parseInt(Events[i][0].substring(AFSlash+1,ALSlash)) < 10)
    sdate += "0";
  sdate += Events[i][0].substring(AFSlash+1,ALSlash);

  edate = Events[i][1].substring(BLSlash+1,Events[i][1].length) + "-";

  if(parseInt(Events[i][1].substring(0,BFSlash)) < 10)
    edate += "0";
  edate += (Events[i][1].substring(0,BFSlash) + "-");

  if(parseInt(Events[i][1].substring(BFSlash+1,BLSlash)) < 10)
    edate += "0";
  edate += Events[i][1].substring(BFSlash+1,BLSlash);

/* prepare the data to display

 * If it's within the date range...
 * If blurb is blank don't display a + sign
 * If link is non-blank, code it.
 * Display the headline
 * Display any non-blank blurb 
 */

  if(sdate <= cdate && edate >= cdate)
   { var headline = "<h3>";
if (Events[i][4] != "")
  headline = headline + '<img src="/gr/collapse-small.gif" border="0" onclick="javascript:tdisplay(800' + i + ')" id="800' 
  + i + 'plus" class="plusminus"><img src="/gr/expand-small.gif" border="0" onclick="javascript:tdisplay(800' + i + 
  ')" id="800' + i + 'minus" style="display:none" class="plusminus">';

 if (Events[i][3] != "")
  headline = headline + '<a href="' + Events[i][3] + '" target="_blank">';  

 headline = headline + Events[i][2];

 if (Events[i][3] != "")
 headline = headline + '</a>';

 headline = headline + '</h3>';

 document.write('<span class="specstyle">' + headline + '</span>');

 if (Events[i][4] != "")
      document.write('<p id="800' + i + '" style="display:none">' + Events[i][4] + '</p>');

// Display the data
//       document.write('<span class="specstyle">' +
//       Events[i][2] + '</span><br><br>');
// debugging
//  document.write(sdate + " " + cdate + " " + edate + "<br>");

} 
} 
}
} // date-check
document.write('<p></p>'); //blank line at the end


// End hiding the Script-->

