// JavaScript Document

function randomContent(){

var chosenImage=new Array();

//filenames of images in this array
chosenImage[1]="site_bannner_v01.jpg";
chosenImage[2]="site_bannner_v02.jpg";
chosenImage[3]="site_bannner_v03.jpg";
chosenImage[4]="site_bannner_v04.jpg";
chosenImage[5]="site_bannner_v05.jpg";
chosenImage[6]="site_bannner_v06.jpg";
chosenImage[7]="site_bannner_v07.jpg";
chosenImage[8]="site_bannner_v08.jpg";
chosenImage[9]="site_bannner_v09.jpg";
chosenImage[10]="site_bannner_v10.jpg";
chosenImage[11]="site_bannner_v11.jpg";
chosenImage[12]="site_bannner_v12.jpg";
chosenImage[13]="site_bannner_v11.jpg"; //redo
chosenImage[14]="site_bannner_v14.jpg";
chosenImage[15]="site_bannner_v15.jpg";
chosenImage[16]="site_bannner_v16.jpg";
chosenImage[17]="site_bannner_v05.jpg";  //redo
chosenImage[18]="site_bannner_v18.jpg";
chosenImage[19]="site_bannner_v19.jpg";
chosenImage[20]="site_bannner_v20.jpg";
chosenImage[21]="site_bannner_v21.jpg";
chosenImage[22]="site_bannner_v22.jpg";
chosenImage[23]="site_bannner_v23.jpg";
chosenImage[24]="site_bannner_v24.jpg";
chosenImage[25]="site_bannner_v25.jpg";
chosenImage[26]="site_bannner_v26.jpg";
chosenImage[27]="site_bannner_v27.jpg";
chosenImage[28]="site_bannner_v28.jpg";
chosenImage[29]="site_bannner_v29.jpg";
chosenImage[30]="site_bannner_v30.jpg";
chosenImage[31]="site_bannner_v07.jpg"; //redo this one
chosenImage[32]="site_bannner_v19.jpg"; //redo
chosenImage[33]="site_bannner_v33.jpg";
chosenImage[34]="site_bannner_v34.jpg";
chosenImage[35]="site_bannner_v35.jpg";


var chosenAltCopy=new Array();

//title and alt copy for images goes here
chosenAltCopy[1]="A photo of peter in the arctic, with mountains in the background";
chosenAltCopy[2]="A photo of a lake in Maine at sunset";
chosenAltCopy[3]="A photo of a lake in Maine with mountains in the background";
chosenAltCopy[4]="a photo of swamp grass in the water";
chosenAltCopy[5]="a photo of trees reflecting in the water";
chosenAltCopy[6]="a photo of sunset clouds over trees and mountains";
chosenAltCopy[7]="a photo of clouds with mountains in the foreground";
chosenAltCopy[8]="a photo of doubletop mountain in maine";
chosenAltCopy[9]="a photo of peter in snow, with a compass in the arctic";
chosenAltCopy[10]="a photo of mountains in the arctic";
chosenAltCopy[11]="a photo of dwarf pines reflecting in an arctic river";
chosenAltCopy[12]="a photo of a river bottom with small ripples";
chosenAltCopy[13]="a photo of traveler terpening dragging a canoe across rocks";
chosenAltCopy[14]="a photo of peter in front of mountains in the tundra";
chosenAltCopy[15]="a photo of hundreds of testubes containing sticks";
chosenAltCopy[16]="a photo of carved wooden leaves";
chosenAltCopy[17]="a photo of carved plant forms";
chosenAltCopy[18]="an ambient occlusion shot of a log with lily pads";
chosenAltCopy[19]="an ambient occlusion shot of water flowers and grasses";
chosenAltCopy[20]="an ambinet occlusion shot of a lily pad and flower";
chosenAltCopy[21]="a shot of a digital render of cattails";
chosenAltCopy[22]="a shot of a digital render of a dragonfly on a lilypad";
chosenAltCopy[23]="a detail shot of a furry sphere in the spotlight";
chosenAltCopy[24]="a detail shot of a spiky digital ball";
chosenAltCopy[25]="a detail shot of digital dragonfly wings";
chosenAltCopy[26]="a color shot of a digital swamp with dragonfly and flowers";
chosenAltCopy[27]="a shot of a magritte scene with a train coming out of the wall";
chosenAltCopy[28]="a detail shot of digital gears rendered to look like an electron microscope image";
chosenAltCopy[29]="a detail shot of digital gears rendered to look like an electron microscope image";
chosenAltCopy[30]="a shot of hundreds of blue cubes falling";
chosenAltCopy[31]="a shot of a mechanical insect holding paperclips";
chosenAltCopy[32]="a shot of a mechanical nut bug with paperclip wings";
chosenAltCopy[33]="a detail shot of a digital bug's eyes looking surprised";
chosenAltCopy[34]="a detail shot of a digital lantern fish swimming across a desert";
chosenAltCopy[35]="a detail shot of a digital lantern fish about to eat a smaller fish";



var getRan=Math.floor(Math.random()*chosenImage.length);
if (getRan==0)
getRan=1;

document.write('<img src=\"doc/css/images/revolvingSplash/'+chosenImage[getRan]+'"alt=\"'+chosenAltCopy[getRan]+'\"width=\"877\" height=\"140\"class=\"imageBorder\" />');
																		
}