	myORH = new Array(
	"slides/ORH0.jpg",
	"slides/ORH1.jpg",
	"slides/ORH2.jpg",
	"slides/ORH3.jpg",
	"slides/ORH4.jpg",
	"slides/ORH5.jpg",
	"slides/ORH6.jpg",
	"slides/ORH7.jpg",
	"slides/ORH8.jpg",
	"slides/ORH9.jpg",
	"slides/ORH10.jpg",
	"slides/ORH11.jpg",
	"slides/ORH12.jpg",
	"slides/ORH13.jpg",
	"slides/ORH14.jpg",
	"slides/ORH15.jpg",
	"slides/ORH16.jpg"
	)
	thisPic = 0
	imgORHcount = myORH.length;

	function chgORHslide(direction) {
		var content = "";
		if (document.images) {
			thisPic += direction;
			if (thisPic < imgORHcount) {
				document.ORHslides.src=myORH[thisPic];
				}
			else if (thisPic == imgORHcount) {
				thisPic=0;
				document.ORHslides.src=myORH[thisPic];
			}
		}
	}
