<!-- 
/* JavaScript source file for ccte.ca Web site */
/* Displays random school pictures (with synchronized 
   title and alt-text attributes) on each page load */

	schoolPics = new Array(
	  "tn_acadia-ns.jpg",
    "tn_atlantic-ns.jpg",
		"tn_christking-bc.jpg",
		"tn_concordia-ab.jpg",
		"tn_drjessie-mb.jpg",
		"tn_emmanuel-on.jpg",
		"tn_presbyterian-qc.jpg",
		"tn_queens-nl.jpg",
		"tn_regent-bc.jpg",
		"tn_ststephens-ab.jpg",
		"tn_tst-on.jpg",
		"tn_lutheran-sk.jpg");
	
	schoolNames = new Array(
	  "Acadia Divinity College, Wolfville, NS",
    "Atlantic School of Theology, Halifax, NS",
		"Seminary of Christ the King, Mission, BC",
		"Concordia Lutheran Seminary, Edmonton, AB",
		"Dr. Jessie Saulteaux Resource Centre, Beausejour, MB",
		"Emmanuel College of Victoria University, Toronto, ON",
		"The Presbyterian College, Montreal, QC",
		"Queen's College, Faculty of Theology, St. John's, NL",
		"Regent College, Vancouver, BC",
		"St. Stephen's College, Edmonton, AB",
		"Toronto School of Theology, Toronto, ON",
		"Lutheran Theological Seminary, Saskatoon, SK");

	peoplePics = new Array(
	  "tn_people01.jpg",
	  "tn_people02.jpg",
	  "tn_people03.jpg",
	  "tn_people04.jpg",
	  "tn_people05.jpg",
	  "tn_people06.jpg",
	  "tn_people07.jpg",
	  "tn_people08.jpg",
	  "tn_people09.jpg",
	  "tn_people10.jpg",
	  "tn_people11.jpg",
	  "tn_people12.jpg",
	  "tn_people13.jpg",
	  "tn_people14.jpg",
	  "tn_people15.jpg",
	  "tn_people16.jpg");

	function showRandomPics() {
		var randomIndex = 0;
		if (document.images) {
			// change school picture on all pages
			randomIndex = Math.floor((Math.random() * schoolPics.length));
			document.schoolPic.src = "images/" + schoolPics[randomIndex];
			document.schoolPic.alt = schoolNames[randomIndex] + " picture";
			document.schoolPic.title = schoolNames[randomIndex];
			
			// change people picture on Home page only
			if (document.title == "CCTE: Home") {
			randomIndex = Math.floor((Math.random() * peoplePics.length));
			document.peoplePic.src = "images/" + peoplePics[randomIndex];
			document.peoplePic.alt = "The faces of CCTE picture";
			document.peoplePic.title = "The faces of CCTE";
			}
		}
	}
// -->
