  function clickList( img ) {

    // leave alone...
    // this is a pointer to the image tag that will have it's source changed when you click
    var theImageTag = document.getElementById('theImage');

    // this is the div for the image caption
    var theDivForTheCaption = document.getElementById('imageCaption');

    // end leave alone...


    // one of these per image
    if( img == 1 ) {
      theImageTag.src = '/img/gallery/nyga_madamx_480x327.jpg';
      theDivForTheCaption.innerHTML = "<em>The New York Groove Associates</em> <br />L-R: <strong>Norbert Marius, Yakki Levi (dr), George Laks (pno)</strong> ";
    }
    if( img == 2 ) {
      theImageTag.src = '/img/gallery/ware_vibes_480x417.jpg';
      theDivForTheCaption.innerHTML = "<em>Bill Ware's Vibes at Puppett's in Brooklyn</em> <br />L-R: <strong>Bill Ware (vibes), Jaime Aff (dr), Norbert Marius (b)</strong> ";
    }
    if( img == 3 ) {
      theImageTag.src = '/img/gallery/tommy_480x360.jpg';
      theDivForTheCaption.innerHTML = "L-R: <strong>Tommy Campbell, Norbert Marius</strong> ";
    }
    if( img == 4 ) {
      theImageTag.src = '/img/gallery/torsos_480x321.jpg';
      theDivForTheCaption.innerHTML = "<em>Screaming Headless Torsos</em> <br />L-R: <strong>Dean Bowman (voc) Dave Fiuczinsky (guit) Rodney Holmes (dr) Norbert Marius (b)";
    }
    if( img == 5 ) {
      theImageTag.src = '/img/gallery/danger_popes_480x362.jpg';
      theDivForTheCaption.innerHTML = "<em>Captain Danger between sets Halloween '05</em> <br />L-R: <strong>Norbert Marius, Eric EDP (guit, voc) Neil Miller (dr) Aaron Hondros (guit, voc)</strong> ";
    }

    if( img == 6 ) {
      theImageTag.src = '/img/gallery/the_pope_480x362.jpg';
      theDivForTheCaption.innerHTML = "Halloween groovin' '05";
    }
    return true;
  }

