﻿var gMeetings = new Array();

function getMeetings() {
    var sMeetings = "";
    var clubTitle = "Ladies Night Out and Monthly Meeting";
    var clubBody = " 7pm at the  \<a href='../nwmo/meetinglocations.aspx' \>American Legion\</a\>.  Please join us for dinner at 6pm.";
    var boardTitle = "Board Meeting";
    var boardBody = " 7pm at the \<a href='../nwmo/meetinglocations.aspx#board' target='_blank'\>Boardwalk Branch Library.\</a\>";



    //2010 Monthly Meetings
    sMeetings += "$" + "2010/01/04 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/02/01 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/03/01 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/04/05 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/05/03 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/06/14 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/07/05 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/08/02 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/09/13 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/10/04 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/11/01 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2010/12/06 || || || || ||" + clubTitle + "||" + clubBody;

    sMeetings += "$" + "2010/01/21 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/02/18 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/03/18 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/04/15 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/05/20 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/06/17 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/07/15 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/08/19 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/09/16 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/10/21 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/11/18 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2010/12/16 || || || || ||" + boardTitle + "||" + boardBody;

    //2009 Monthly Meetings
    sMeetings += "$" + "2009/10/05 || || || || ||" + clubTitle + "||" + clubBody;
    sMeetings += "$" + "2009/11/02 || || || || ||" + "Monthly Meeting and Hat Night!" + "||" + clubBody;
    sMeetings += "$" + "2009/12/13 || || || || ||" + "Decembers Monthly Meeting will be held " + "||" + "as part of the Christmas Party.";
 
    sMeetings += "$" + "2009/10/15 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2009/11/19 || || || || ||" + boardTitle + "||" + boardBody;
    sMeetings += "$" + "2009/12/17 || || || || ||" + boardTitle + "||" + boardBody;


    gMeetings = sMeetings.split("$");
    gMeetings.sort();
    gMeetings.reverse();

}