
// 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/technology/img/AZ_4_d2.jpg width=200 height=115>",
			"<img src=../education/technology/img/BK_3_d2.jpg width=200 height=115>",
			"<img src=../education/technology/img/BN_2_d1.jpg width=200 height=115>",
			"<img src=../education/technology/img/MC_clip2_c.jpg width=200 height=115>",
			"<img src=../education/technology/img/PP_4_d1.jpg width=200 height=115>",
			"<img src=../education/technology/img/PP_clip2_s1.jpg width=200 height=115>"]

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

