/* Script to pick a random header image.
   To add more images:
   1. Name the new image "right-side-photoN.jpg"
   2. Raise this count
*/
var header=3;	/* Number of possible images */
var random= Math.round(Math.random()*(header-1))+1;
document.write('<img src="/right-side-photo' + random + '.jpg" width="136" height="213" alt="" border="0">');
