// This script is for the "moving pictures." Long term, we could put this script in the "scripts" directory, as long as we 
// have the same number of moving pictures on each page, and label them all front1..frontX. Some reminders on how to incorporate
// the moving pictures properly into each webpage:
// 	- Make sure each photo's position is absolute, and has a z-index specified. This is easiest to do in css, and could 
//	probably be done in the molc.css stylesheet.
//	- Make sure to call <body onload="beChanging()"> when using the <body> tag.
//	- Make sure photos have correct id. -->

var A=2;
var B=1;
var C=1;
var Temp;

function beChanging()

{

Temp=C; C=B; B=A; A=Temp;

document.getElementById('front1').style.zIndex = A;
document.getElementById('front2').style.zIndex = B;
document.getElementById('front3').style.zIndex = C;

setTimeout("beChanging()",4000);

}

