/* Script to pick a random header image.
   To add more images:
   1. Name the new image "right-column-photosN.jpg"
      These photos can vary in height, but should be width=173
   2. Raise this count
*/
var header=5;	/* Number of possible images */
var random= Math.round(Math.random()*(header-1))+1;
document.write('<img src="/images/right-column-photos' + random + '.jpg" width="173" alt="" border="0">');

