function NE(NEdate, NEtime, NEfunction)
  {
   this.NEdate = NEdate;
   this.NEtime = NEtime;
   this.NEfunction = NEfunction;
  }
var EVNT = new Array();
EVNT[0] = new NE("7/24/2009","","Kollel Arrives");
EVNT[1] = new NE("7/25/2009","2:40pm","<i>Children's Programming from 2:40-3:30pm");
EVNT[2] = new NE("7/25/2009","5:30pm","General Class: Trust in G-d.  Choose Your Life. (R. Ari Adler)");
EVNT[3] = new NE("7/25/2009","6:30pm","Women's Class: <i>Chovos HaLevovos</i> part 1: Rose Colored Glsses -- Learn How to See the Good in [Almost] Every Situation (Mrs. Rachel Wasser)");
EVNT[4] = new NE("7/27/2009","8pm","Women's Class: <i>Chovos HaLevovos</i> part 2: Me...trust in G-d...Why? (Mrs. Rachel Wasser)");
EVNT[5] = new NE("7/28/2009","10am","Women's Class: <i>Igeres Ha'Ramban</i> part 1 (Mrs Rachel Wasser)");
EVNT[6] = new NE("7/28/2009","7:15pm","Learning and Cholent.");
EVNT[7] = new NE("7/30/2009", "8:30am","Second Minyan with explanation of Kinos.");
EVNT[8] = new NE("7/30/2009", "1:45pm", "Women's Class: Walking in G-d's Footsteps (R. Moshe Dov Wassner)");
EVNT[9] = new NE("7/30/2009", "2:30pm", "General Class: Wy did G-d destroy his own Bais Ha'Mikdash (R. Ari Adler)");
EVNT[10] = new NE("7/30/2009","3:15pm","Overview and insights in Eichah (Yisroel Kutner)");
EVNT[11] = new NE("7/30/2009","4:00pm","Heartrending dilemnas of the Holocaust: entrusting one's children to a non-Jewish family (Rabbi Akiva Males)");
EVNT[12] = new NE("7/30/2009","5:00pm","Talmud Class [Kamtza/Bar Kamtza]");
EVNT[13] = new NE("7/30/2009","6:30pm","Special Tisha B'av video");
EVNT[14] = new NE("8/1/2009","2:40pm","<i>Children's Programming from 2:40-3:30pm");
EVNT[15] = new NE("8/1/2009","4:45pm","Women's Class: <i>Chovos HaLevovos</i> -- Investing in the 'Trust Bond': 7 practical steps to strengthening your trust in G-d (Mrs. Rachel Wasser)");
EVNT[16] = new NE("8/1/2009","S'eudat Shlishit","Laws of Kosher: milk and meat (R' Moshe Dov Wasser)");
EVNT[17] = new NE("8/3/2009","8pm", "Women's Class: Insights into davening (Mrs. Chava Adler)");
EVNT[18] = new NE("8/4/2009","10am","Women's Class: <i>Igeres Ha'Ramban</i> part 2 (Mrs Chava Adler)");
EVNT[19] = new NE("8/4/2009","Minchah/Maariv","Senator's Baseball");
EVNT[20] = new NE("8/8/2009","5pm","General Class: Why do we study the Torah? (Eli Wasser)");
EVNT[21] = new NE("8/8/2009","6pm","Women's Class: Reward and Punishment (R' Ari Adler)");


function DateStringtoObj(DateStr,DateObj)
  {
    var tNM = DateStr.slice(0,DateStr.indexOf("/"));
    var DateStr = DateStr.substr(DateStr.indexOf("/")+1);
    var tND = DateStr.slice(0,DateStr.indexOf("/"));
    var tNY = DateStr.substr(DateStr.indexOf("/")+1);
    DateObj.setFullYear(tNY,tNM,tND);
  }
function CompareDates(a, b) {
var dateA = new Date();
var dateB = new Date();
DateStringtoObj(a.NEdate,dateA);
DateStringtoObj(b.NEdate,dateB);
return dateA - dateB;
} 

document.write("<table border = 1>");
var z;
for (z in EVNT.sort(CompareDates))
 {
  
  document.write("<tr><td>" + EVNT[z].NEdate + "</td><td>" + EVNT[z].NEtime + "</td><td>" + EVNT[z].NEfunction + "</td></tr>");
 }
document.write("</table>");