var mess = new Array(
'<img border="0" src="/images/photo_WhitePine_RH_Schells_400x139.jpg" width="400" height="139"><br><em>High Schells Wilderness &nbsp;&nbsp; &copy; Ron Hunter</em>',
'<img border="0" src="/images/photo_bobcats_dmcallister_crop_400x139.jpg" width="400" height="139"><br><em>Cute bobcats &nbsp;&nbsp; &copy; Diane McAllister</em>',
'<img border="0" src="/images/photo_WhitePine_PD_Highland_400x139.jpg" width="400" height="139"><br><em>Highland Ridge Wilderness &nbsp;&nbsp; &copy; Pete Dronkers</em>',
'<img border="0" src="/images/photo_cranes_sunset_agubanich_crop_400x139.jpg" width="400" height="139"><br><em>Cranes at sunset &nbsp;&nbsp; &copy; Alan Gubanich</em>',
'<img border="0" src="/images/photo_WhitePine_Birch_SS-Grafton_400x139.jpg" width="400" height="139"><br><em>Aspens in High Schells Wilderness &nbsp;&nbsp; &copy; Scott Smith</em>',
'<img border="0" src="/images/photo_july_sheldon_wide-hill_kkuznicki_crop_400x139.jpg" width="400" height="139"><br><em>Sheldon National Wildlife Refuge &nbsp;&nbsp; &copy; Kurt Kuznicki</em>',
'<img border="0" src="/images/photo_kidsinrocks_jsippel_crop_400x139.jpg" width="400" height="139"><br><em>Kids in rocks - Pinto Valley Wilderness &nbsp;&nbsp; &copy; James Sippel</em>',
'<img border="0" src="/images/photo_Clark-County_Red-Rock-Sunrise_SN_400x139.jpg" width="400" height="139"><br><em>Red Rock Sunrise &nbsp;&nbsp; &copy; Susan Nielsen</em>',
'<img border="0" src="/images/photo_sweetwater-sunrise2_kkuznicki_crop_400x139.jpg" width="400" height="139"><br><em>Sunrise in the Sweetwater Mountains &nbsp;&nbsp; &copy; Kurt Kuznicki</em>',
'<img border="0" src="/images/photo_redrock_storm_kkuznicki_400x139.jpg" width="400" height="139"><br><em>Storm over Red Rock Canyon NCA &nbsp;&nbsp; &copy; Kurt Kuznicki</em>');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    
//   You now need to update this code to specify the images or quotes that you want to use.  
//   First you need to repeat the Array code for each image as many times as necessary until   
//   the array contains as many entries as you wish to include in the random selection.
//   
//   If you are using quotes you then simply replace the HTML for each image with the 
//   text for your quotes. If you want to use this code to display a random image
//   then you need to place all of the HTML code for each of your images into
//   the entries instead. You can make just about any type of code for your page into 
//   a random selection by placing the appropriate HTML and text into the entries. 