<!--
/*****************************************************************************
*        File: newsList.js
* Description: Setup the list of news stories
*****************************************************************************/

/*****************************************************************************
*   Procedure: BuildNewsList
* Description: Routine to build the table of stories list
*  Parameters: None
*     Returns: An Events object
*****************************************************************************/
function BuildNewsList() {
    var eventList = new Events();

    eventList.add(new Event('extra/toe.htm', 'Table of Articles', 'toe', true));
    eventList.add(new Event('extra/charity.htm', 'Charity Report', 'cr', true));
    eventList.add(new Event('extra/offDesc.htm', 'CCCC Officer Office Descriptions', 'od', true));
    eventList.add(new Event('extra/carShows.htm', 'CCCC Car Show List', 'csl', true));
    eventList.add(new Event('extra/donation.htm', 'Generic Donation Letter', 'gdl', true));
    eventList.add(new Event('extra/shirts.htm', 'Shirts for Sale', 'ss', true));
    eventList.add(new Event('extra/ch.htm', 'Thank You from Children\'s Hospital', 'ch', true));
    eventList.add(new Event('extra/blankets.htm', 'Blankets for Sale', 'bs', true));
    eventList.add(new Event('extra/c5mirror.htm', 'C5 Mirror Repair', 'mirror', true));

    return eventList;

}
//-->
