
// Define pics for the collage space in the following array.  It's set up for 6 images now, but can be modified to include more or less.
var pics = ["placeholder. don't modify me. the zero item in the array is never called upon",
		    "<img src=../education/naturalworld/img/VC_3_d1.jpg width=200 height=115>",
			"<img src=../education/naturalworld/img/CS_s1a.jpg width=200 height=115>",
			"<img src=../education/naturalworld/img/JT_clip1a.jpg width=200 height=115>",
			"<img src=../education/naturalworld/img/GO_1_d1.jpg width=200 height=115>",
			"<img src=../education/naturalworld/img/SM_1_d2.jpg width=200 height=115>",
			"<img src=../education/naturalworld/img/BN_clip1a.jpg width=200 height=115>"]

// This calculates the random number.
var randomNumber = Math.ceil(Math.random() * 6);

