
// 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/ritual/img/KS_s2a.jpg width=200 height=115>",
			"<img src=../education/ritual/img/ML_1_d1.jpg width=200 height=115>",
			"<img src=../education/ritual/img/GO_s1b.jpg width=200 height=115>",
			"<img src=../education/ritual/img/TDH_s1a.jpg width=200 height=115>",
			"<img src=../education/ritual/img/KS_s1b.jpg width=200 height=115>",
			"<img src=../education/ritual/img/BN_clip1b.jpg width=200 height=115>"]

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

