/* Script to pick a random photo for the right side of the page.
   To add more images:
   1. Name the new image "right-side-kristenN.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-kristen' + random + '.jpg" width="196" height="379" alt="" border="0">');
