// JavaScript Document
// Allows left-hand side link images to change as user moves mouse over them.

	<!-- 
	if (document.images) {
	
	img1on = new Image (187,53);
	img1on.src = "graphics/layout/topbuttons/ovolunteer.png";
		img1off = new Image (187,53);
		img1off.src = "graphics/layout/topbuttons/volunteer.png";
	
	
	img2on = new Image (187,53);
	img2on.src = "graphics/layout/topbuttons/osupport.png";
		img2off = new Image (187,53);
		img2off.src = "graphics/layout/topbuttons/support.png";
	
	img3on = new Image (187,53);
	img3on.src = "graphics/layout/topbuttons/oabout.png";
		img3off = new Image (187,53);
		img3off.src = "graphics/layout/topbuttons/about.png";
	
	img4on = new Image (187,53);
	img4on.src = "graphics/layout/topbuttons/oevents.png";
		img4off = new Image (187,53);
		img4off.src = "graphics/layout/topbuttons/events.png";
	
	img5on = new Image (187,53);
	img5on.src = "graphics/layout/topbuttons/ocontact.png";
		img5off = new Image (187,53);
		img5off.src = "graphics/layout/topbuttons/contact.png";
	
	//Add additional images here.
	}
	//function to turn images on.
	function imgOn (img1) {
		if (document.images) {
			document [img1].src = eval (img1 + "on.src");
		}
	}
	//function to turn images off.
	function imgOff (img1) {
		if (document.images) {
			document [img1].src = eval (img1 + "off.src");
		}
	}
	//-->
