<!--

	//JavaScript for SUB-LEVEL pages
	//Images
	//
	//Developed by Candide Media Works, Inc.
	//All Rights Reserved.

	
	var myimages=new Array();
	
	function preloadImgs(){
		for (i=0;i<preloadImgs.arguments.length;i++){
			myimages[i]=new Image();
			myimages[i].src="../images/" + preloadImgs.arguments[i];
		}
	}

	//preload left main nav
	preloadImgs("nav_profiles_on.gif", "nav_engineering_on.gif", "nav_artifacts_on.gif", "nav_videostories_on.gif", "nav_imagining_on.gif", "nav_dialogue_on.gif", "nav_about_on.gif");


	function swapImg(img1,img2) {
		if (document.images) {
			document[img1].src = img2;
		}
	}


	//image cycling for IMAGINING THE FUTURE
	function cycleImg_imagining() {
		i = Math.floor((Math.random() * 100) % 12);
		if (document.images) {
			document["mainswapimage"].src = "../images/imagining_img_" + i + ".jpg";
		}
		setTimeout("cycleImg_imagining()",5000);
	}

	//image cycling for DIALOGUE
	function cycleImg_dialogue() {
		i = Math.floor((Math.random() * 10) % 7);
		if (document.images) {
			document["mainswapimage"].src = "../images/dialogue_img_" + i + ".jpg";
		}
		setTimeout("cycleImg_dialogue()",3000);
	}
	
	//Quick Facts
	qftotal = 38;
	counter = 1;
	function swapQFacts() {
		if (counter < qftotal) {
			if (document.images) {
				document["qfacts"].src = "../images/engineering_qfacts/" + counter + ".gif";
				counter++;
			}
		} else {
			counter = 0;
		}
	}
	
	//Profiles Rollover
	imgs = new Array("thumb1", "thumb2", "thumb3", "thumb4", "thumb5", "thumb6", "thumb7", "thumb8");
	imgfnames = new Array("burton", "garlock", "iken", "melisi", "rinaldi", "tamaro", "vitchers", "wils");
	
	function profilesRO(img) {
		if (document.images) {
			for (i=0; i<imgs.length; i++) {
				if (!(i==(img-1))) {
					imgName = imgs[i];
					document[imgName].src = "../images/profiles_thumb_" + imgfnames[i] + "_off.jpg";
				}
			}
		}
	}
	
	function profilesROrestore() {
		if (document.images) {
			for (i=0; i<imgs.length; i++) {
				imgName = imgs[i];
				document[imgName].src = "../images/profiles_thumb_" + imgfnames[i] + ".jpg";
			}
		}
	}
	
	//Video Stories Rollover
	vsimgs = new Array("thumb1", "thumb2", "thumb3", "thumb4", "thumb5", "thumb6", "thumb7", "thumb8", "thumb9", "thumb10", "thumb11");
	vsimgfnames = new Array("history", "tours", "strobel", "wall", "wallmeeting", "kevin", "tomasetti", "sphere", "townhall", "gallery", "citywide");
	
	function vstoriesRO(img) {
		if (document.images) {
			for (i=0; i<vsimgs.length; i++) {
				if (!(i==(img-1))) {
					imgName = vsimgs[i];
					document[imgName].src = "../images/videostories_thumb_" + vsimgfnames[i] + "_off.jpg";
				}
			}
		}
	}
	
	function vstoriesROrestore() {
		if (document.images) {
			for (i=0; i<vsimgs.length; i++) {
				imgName = vsimgs[i];
				document[imgName].src = "../images/videostories_thumb_" + vsimgfnames[i] + ".jpg";
			}
		}
	}
	
//-->