/* Script to pick a random header image.
   To add more images:
   1. Name the new image "header-photoN.jpg"
   2. Raise this count
*/
var header=3;	/* Number of possible images */
var random= Math.round(Math.random()*(header-1))+1;
document.write('<td background="/images/inside_header_' + random + '.jpg">');
