/* 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=8;	/* Number of possible images */
var random= Math.round(Math.random()*(header-1))+1;
document.write('<td width=358><img src="/header-photo' + random + '.jpg" width="358" height="192" alt="Living with Pets and Wildlife in Westchester and Putnam Counties"></td>');
