function constructArticles()
{
    var articles = new Array();
      

    
     articles[0] = new pressArticle(
    "ELLEN HOVERKAMP, HARVESTING BEAUTIFUL WORKS OF ART<br>FROM \"HER NEIGHBORS GARDEN\"",  // title
    "Charmagne Eckhert", // author
    "Ink Magazine", //publication
    "October 2007",      // date
    "articles/inkarticle.pdf");       // url
    
     articles[1] = new pressArticle(
    "LASTING IMPRESSION - TODAY'S TECHNOLOGY OFFERS A NEW WAY<br>TO CAPTURE THE GARDEN'S FINEST MOMENTS",  // title
    "Ken Druse", // author
    "Horticulture Magazine", //publication
    "August/September 2007",      // date
    "articles/horticulture.pdf");       // url
    
    articles[2] = new pressArticle(
    "COVER",  // title
    "", // author
    "Edible Nutmeg Magazine", //publication
    "Summer 2007",      // date
    "http://www.ediblenutmeg.com/pages/articles.htm");       // url
    
     articles[3] = new pressArticle(
    "SOLO SHOW AT THE JAMES BEARD FOUNDATION",  // title
    "", // author
    "", //publication
    "January/April 2007",      // date
    "http://www.jamesbeard.org/greenhouse/2007/01.shtml");       // url
           
     articles[4] = new pressArticle(
    "DIGITAL BLOOMS",  // title
    "Denese Taylor", // author
    "Boston Globe", //publication
    "June 1 2006",      // date
    "http://www.boston.com/news/local/articles/2006/06/01/comics_serious_about_their_night/?page=3");       // url
    articles[4].line2 = "Tower Hill Solo Show Review";
        
    articles[5] = new pressArticle(
    "PLUCKED FOR PORTRAITS, GARDENS&rsquo; BOUNTY",  // title
    "Ken Druse", // author
    "New York Times", //publication
    "April 7 2005",      // date
    "http://www.nytimes.com/2005/04/07/garden/07cutt.html?pagewanted=all");       // url    
    
   articles[6] = new pressArticle(
    "PHOTOSHOP IN BLOOM, USING SCANNERS AND PHOTOSHOP<br>TO CREATE BREATHTAKING FLORAL COLLAGES",  // title
    "Jim Patterson", // author
    "Photoshop User Magazine", //publication
    "July 2003",      // date
    "articles/photoshopuser.pdf");       // url
    
    articles[7] = new pressArticle(
    "FLOWERS FOR ALL SEASONS",  // title
    "Sandi Kahn Shelton", // author
    "New Haven Register", //publication
    "May 27 2002",      // date
    "newHavenRegisterArticle.html");       // url
    articles[7].line2 = "Lifestyle Article";
    
 
    
    return articles;

}

