//this is for onMouseOver and onMouseOut events.




/*picture randomizer*/
function ChangePict()
{

if (document.photoPic == null) return;

else

 pictnum = 5;				 //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.photoPic.src = "/images/collage_0" + round + ".jpg";
}