
// 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/public/img/JA-clip1_b.jpg width=200 height=115>",
			"<img src=../education/public/img/CS_s1b.jpg width=200 height=115>",
			"<img src=../education/public/img/JT_d1.jpg width=200 height=115>",
			"<img src=../education/public/img/MP_clip1_s2.jpg width=200 height=115>",
			"<img src=../education/public/img/PP_clip1_s1.jpg width=200 height=115>",
			"<img src=../education/public/img/RS_clip2b.jpg width=200 height=115>"]

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

