// image rotator
var images = Array();

images[1] = "img/random/1.jpg";
images[2] = "img/random/2.jpg";
images[3] = "img/random/3.jpg";
images[4] = "img/random/4.jpg";
images[5] = "img/random/5.jpg";
images[6] = "img/random/6.jpg";

function rndImage() {
	var randImage1 = document.getElementById("randImg1");
	var choose1;
	choose1 = Math.floor(Math.random()*images.length);
	while(choose1 == choose1) {
		choose1 = Math.floor(Math.random()*images.length);
		}
	randImage1.setAttribute("src",images[choose1]);
}