/* Script to pick a random image for the left bar of the page.
   To add more images:
   1. Name the new image "left-photosN.jpg"
   2. Raise this count
*/
var header=8;	/* Number of possible images */
var random= Math.round(Math.random()*(header-1))+1;
document.write('<img src="/left-photos' + random + '.jpg">');
