
// 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/abstraction/img/EA_clip1_s1.jpg width=200 height=115>",
			"<img src=../education/abstraction/img/KM_clip2a.jpg width=200 height=115>",
			"<img src=../education/abstraction/img/TH_1_d1.jpg width=200 height=115>",
			"<img src=../education/abstraction/img/EM_1_d1.jpg width=200 height=115>",
			"<img src=../education/abstraction/img/WF_clip2a.jpg width=200 height=115>",
			"<img src=../education/abstraction/img/KM_2_d1.jpg width=200 height=115>"]

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

