
		//update 'numImages' to reflect the number of images in random dbase (images/random)
		//be sure to name images with correct format. (e.g. 5.jpg, 6.jpg, etc)
		//extensions of .jpeg or .gif will not work

		
		var numImages = 10;
		

		//only change 'path' variable if the images are moved to a different directory.
		//NOTE: the path is relative to the page the images will be displayed on; not this script.
		

		var path = "http://www.maine.gov/mema/serc/images/random/";
		

		//DO NOT NEED TO EDIT THIS BLOCK WHEN UPDATING PICTURES*******

		var num; //random number
		var altCap; //alt text for each picture. 
		var caption; //display text under picture (description)
		
		num = 1 + (Math.round(numImages * Math.random()/1.0) % numImages);
		
		
		var randImage;
		randImage=path+num+".jpg";
		
		//************************************************************
		


		//as images are added, new captions and alt text will also have to be added
		//copy an if block below and replace both 'caption' and 'altCap' with correct
		//strings for the corresponding image number (name of image).
		
		//*********EXAMPLE FOR ADDING A PICTURE NAMED 5.JPG**************
		// if(num==5){
		// caption="Here is the text that will appear under 5.jpg.";
		// altCap="Here&nbsp;is&nbsp;the&nbsp;alt&nbsp;text."
		//	}
		//**************************************************************
		

		if(num==1){
		caption="Hazardous Materials Conference Team Challenge, Augusta Civic Center, 2007.  A MEMA Photo.";
		altCap="Patching&nbsp;a&nbsp;barrell."
			}
		if(num==2){
		caption="Hazardous Materials Conference Team Challenge, Augusta Armory, 2004.  A MEMA Photo.";
		altCap="Plugging&nbsp;a&nbsp;leaks&nbsp;in&nbsp;a&nbsp;barrell."
			}
		if(num==3){
		caption="Hazardous Materials Conference Team Challenge, Augusta Armory, 2004.  A MEMA Photo.";
		altCap="Patching&nbsp;a&nbsp;barrell."
			}
		if(num==4){
		caption="Hazardous Materials Conference Team Challenge, Verrillo's Convention Center, Portland, 2005.  A MEMA Photo.";
		altCap="Picking&nbsp;up&nbsp;change&nbsp;in&nlevel&nA&nbsp;suits."
			}
		if(num==5){
		caption="Hazardous Materials Conference Team Challenge, Verrillo's Convention Center, Portland, 2005.  A MEMA Photo.";
		altCap="Picking&nbsp;up&nbsp;change&nbsp;in&nlevel&nA&nbsp;suits."
			}
		if(num==6){
		caption="Hazardous Materials Conference Team Challenge, Verrillo's Convention Center, Portland, 2005.  A MEMA Photo.";
		altCap="Picking&nbsp;up&nbsp;change&nbsp;in&nlevel&nA&nbsp;suits."
			}
		if(num==7){
		caption="Hazardous Materials Conference Team Challenge, Augusta Armory, 2004.  A MEMA Photo.";
		altCap="Next&nbsp;a&nbsp;pipetree&nbsp;hum&nbsp;how&nbsp;do&nbsp;we&nbsp;do&nbsp;this?"
			}
		if(num==8){
		caption="Hazardous Materials Conference Team Challenge, Augusta Armory, 2004.  A MEMA Photo.";
		altCap="Plugging&nbsp;a&nbsp;barrell."
			}
		if(num==9){
		caption="Hazardous Materials Conference Team Challenge, Augusta Armory, 2004.  A MEMA Photo.";
		altCap="Moving&nbsp;a&nbsp;barrell."
			}
		if(num==10){
		caption="Hazardous Materials Conference Team Challenge, Verrillo's Convention Center, Portland, 2005.  A MEMA Photo.";
		altCap="Documenting&nbsp;and&nbsp;collecting&nbsp;evidence."
			}