lift1 = new Image(302,268);
lift1.src = "liftimage1.jpg";

lift2 = new Image(302,268);
lift2.src = "liftimage2.jpg";

lift3 = new Image(302,268);
lift3.src = "liftimage3.jpg";

lift4 = new Image(302,268);
lift4.src = "liftimage4.jpg";

lift5 = new Image(302,268);
lift5.src = "liftimage5.jpg";

lift6 = new Image(302,268);
lift6.src = "liftimage6.jpg";

lift7 = new Image(302,268);
lift7.src = "liftimage7.jpg";

lift8 = new Image(302,268);
lift8.src = "liftimage8.jpg";

lift9 = new Image(302,268);
lift9.src = "liftimage9.jpg";

lift10 = new Image(302,268);
lift10.src = "liftimage10.jpg";

lift11 = new Image(302,268);
lift11.src = "liftimage11.jpg";

lift12 = new Image(302,268);
lift12.src = "liftimage12.jpg";

lift13 = new Image(302,268);
lift13.src = "liftimage13.jpg";

imgcount = 0;
pause = 0;

function rotateImage() {
	if (!pause) {
		imgcount++;
		if (imgcount == 14) { imgcount = 1 };
		document.images.liftimage.src = eval("lift" + imgcount + ".src");
	}
}

setInterval("rotateImage()", 466);
