// Display Random Image
//
// Picks a random number and then displays an image with 
// the name "header_splash_photo_x.jpg" where x is the random number.
// The image will have an empty ALT tag, width of 570 and height of 237.

len = 1;  // change to equal number of random choices

rnd = Math.floor(Math.random() * len) + 1;

randomFileName = 'header_splash_photo_' + rnd + '.jpg';

document.writeln('<IMG SRC=\"mm/images/random_splash_photos/' + randomFileName + '\" ALT=\"\" border=\"0\" height=\"205\" width=\"546\">');

// EOF
