<!--
   var pics = new Array();
   pics[6] = "../Albums/Flair/flair.jpg";
   pics[5] = "../Albums/Brewed/brewed_in_the_attic.jpg";
   pics[4] = "../Albums/StraightUp/straight_up.jpg";
   pics[3] = "../Albums/Vestosterone/vestosterone.jpg";
   pics[2] = "../Albums/Twinkie/airborne_twinkie.jpg";
   pics[1] = "../Albums/Vested/vested_interest.jpg";
   numAlbums = 6;
   
   function setPic(pic){
     if(document.getElementById('albumImg') && pics[pic] != undefined)
     {
       document.getElementById('albumImg').src = pics[pic]; //new img src
 
       for(i=1; i<=numAlbums; i++)  //un-emphasize every entry
         if(document.getElementById('album'+i))
           document.getElementById('album'+i).style.fontStyle="normal";
           
       if(document.getElementById('album'+pic)) //emphasize selected
         document.getElementById('album'+pic).style.fontStyle="italic";
     }  
   }
 -->