
/*picture randomizer*/
function ChangePict()
{

if (document.center == null) return;

else

 pictnum = 6;				 //this is the max # of pictures that will change
 randnum = Math.random();
 num = randnum * pictnum;
 round = Math.floor(num);
 
 if (round == pictnum) {round = round - 1;}
 
 document.center.src = "images/center" + round + ".gif";
}