// JavaScript Document<!-- Random Script for Faces Image--><!--	pictures = new Array(		new Array("./pictures/default/MathLab2.JPG", "Marshmallow-and-toothpick model in the Math Lab"),		new Array("./pictures/default/MathLab1.JPG", "Frank and Professor Luttmann with marshmallow models"),		new Array("./pictures/default/pumpkinpi.jpg", "One of the creations at the pumpkin carving contest"),		new Array("./pictures/default/pumpkinpi.jpg", "One of the creations at the pumpkin carving contest"),		new Array("./pictures/facultypage/benclass1.jpg", "Students and Professor Ford in a Math 300 Class"),		new Array("./pictures/default/aba.jpg", "A student giving a presentation")					) ;		function choose_image()	{		randomNum = Math.floor((Math.random()*pictures.length)) ;		return pictures[randomNum] ;	}// -->
