var movies = new Array();
function movieObj(mediaType, url, shortDesc, longDesc)
{
    this.mediaType = mediaType;
    this.url = url;
    this.shortDesc = shortDesc;
    this.longDesc = longDesc;
    var i = movies.length;
    movies[i] = this;
}
function createList()
{
new movieObj('*none*',
         'idle.html',
         ' ', 
         "Pick a media selection from the pull down list");
new movieObj("MP3 (sound only)", 
        "child_772.html",
        "A reading of office debris",
        "Marc Wilson's prose poem (Michael Schockey on guitar) based on contents of office paper and other scraps found at ground zero.");
new movieObj('Flash',
         'attack.html',
         'Long collage with "Only Time"',
         "Steve Golding lived through 911 because he was late for work.  This is his tribute to his former co-workers. Enya's song as background, 6.5MB");
new movieObj('Flash',
         '911.html',
         'Short collage with "Only Time"', 
         "A shorter (4MB) collage with Enya's song as background");
new movieObj('Flash',
         'heroes.html',
         'First responder montage',
         'The "Remember the Blood of Heroes" montage');
new movieObj('MPEG',
         'palestinians.html',
         "Palestinians celebrate",
         "The Palestinian response to the 911 attacks");
new movieObj('Windows Media Player',
         'challengeOfToday.html',
         "President Bush's response",
         "The President's post-attack address to the nation");
new movieObj('Flash',
         'loader.html',
         'Ground zero 1 year later',
         'A walking tour of ground zero, 2002');
}
function getMovies()
{
    return movies.length;
}
function getMovie(which)
{   
    return movies[which];
}

