<!-- hide


var news = new Array();
var newscount = 0;

function preloadnews(title, newsitem) {
    news[newscount] = new Array(2);
    news[newscount][0] = title;
    news[newscount][1] = newsitem;
    newscount++;
}

preloadnews("Annual Picnic and Garage Sale 6/19/010", "The annual picnic and garage sale will be held on June 19, 2010.  We hope to see you there!");
preloadnews("HOA Annual Meeting was held 4/27/10","Our annual meeting was held at Kilmer Middle School 4/27/10.  Details are available on the Resident's Forum.");
preloadnews("Quarterly Dues due soon!","Quarterly dues are due by June, 2010 payable to CWHOA, PO Box 177, Dunn Loring, VA 22027");
preloadnews("Website in Beta", "The website URL has changed to www.courthousewoods.org (note the .org, not .com).  The site is available for testing, including the forum.");

// -->

