<!-- hide from older browsers

/*** Thanks to Andrew Bossom for the idea of defining the image path here and declaring the path to the top level directory in each HTML document. ***/


// imgPath contains the full path from the HTML document to the folder with the images:
 var imgPath1 = toTop + '/May2005_concert/';
 var imgPath2 = toTop + '/Dec2005_concert/';

// preload images and ensure browser can do JavaScript rollovers:
 if (document.images) {
   //Placeholders
   var spacer1= new Image(); spacer1.src= imgPath1 + 'spacer.gif';
   var spacer2= new Image(); spacer2.src= imgPath2 + 'spacer.gif';
 
   //Mouseover or onclick images
   var photo01= new Image(500,332); photo01.src= imgPath1 + 'Sold_Out-500x332.jpg';
   var photo02= new Image(319,480); photo02.src= imgPath1 + 'Poster-319x480.jpg';
   var photo03= new Image(500,332); photo03.src= imgPath1 + 'Audience-500x332.jpg';
   var photo04= new Image(319,480); photo04.src= imgPath1 + 'Veteran_Saluting-319x480.jpg';
   var photo05= new Image(500,332); photo05.src= imgPath1 + 'Ripley_Bonde-500x332.jpg';
   var photo06= new Image(500,332); photo06.src= imgPath1 + 'wmaa-500x332.jpg';
   
   var photo07= new Image(500,275); photo07.src= imgPath2 + 'Dec2005_0003_500.jpg';
   var photo08= new Image(500,320); photo08.src= imgPath2 + 'Dec2005_0005_500.jpg';
   var photo09= new Image(500,363); photo09.src= imgPath2 + 'Dec2005_0019_500.jpg';
   var photo10= new Image(500,332); photo10.src= imgPath2 + 'Dec2005_0040_500.jpg';
   var photo11= new Image(500,332); photo11.src= imgPath2 + 'Dec2005_0042_500.jpg';
   var photo12= new Image(500,332); photo12.src= imgPath2 + 'Dec2005_0043_500.jpg';
 }
 
 // Captions:
   var caption07 = 'ROTC Cadets:  student-escorts for the wheelchair vets';
   var caption08 = 'World War II posters';
   var caption09 = 'ROTC cadet singing the national anthem';
   var caption10 = 'BMT artists greeting WW II Vet';
   var caption11 = 'Left to Right:  Bertram Lehmann, Charlotte Kaufman (Director), Rich Appleman, Jim Cate (VA Hosp), Dan Loschen, Mara Bonde, David Ripley';
   var caption12 = 'Rear:  Rich Appleman, bass; Mara Bonde, soprano; Dan Loschen, piano; David Ripley, bass-baritone. Front: Bertram Lehmann, drums.';
   

// this changes the images
 function imgChange(imgName,ObjName,captName,captText) {
  if (document.images) {
    document.images[imgName].src = eval(ObjName + ".src");
  }
 
// this displays the captions
  if (document.getElementById) {
    var photoCaptTxt = document.getElementById('photoCapt').firstChild;
    if (ObjName == 'photo07') {
      photoCaptTxt.nodeValue = caption07;
    } else if (ObjName == 'photo08') {
      photoCaptTxt.nodeValue = caption08;
    } else if (ObjName == 'photo09') {
      photoCaptTxt.nodeValue = caption09;
    } else if (ObjName == 'photo10') {
      photoCaptTxt.nodeValue = caption10;
    } else if (ObjName == 'photo11') {
      photoCaptTxt.nodeValue = caption11;
    } else if (ObjName == 'photo12') {
      photoCaptTxt.nodeValue = caption12;
    } else return;
  }
}


// end hiding -->