
// 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/home/img/AZ_3_d3.jpg width=200 height=115>",
			"<img src=../education/home/img/DHS_s1a.jpg width=200 height=115>",
			"<img src=../education/home/img/PO_3_d4.jpg width=200 height=115>",
			"<img src=../education/home/img/PO_clip2b.jpg width=200 height=115>",
			"<img src=../education/home/img/PO_g.jpg width=200 height=115>",
			"<img src=../education/home/img/SS_3_d1.jpg width=200 height=115>"]

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

