
/* ************************************************************
** Toggle Images for Earth Works Gallery
************************************************************ */
if (document.images) {
		Left_off=new Image();
		Left_off.src = "../Art/Misc/Arw_Left_off.gif";
		Left_on=new Image();
		Left_on.src = "../Art/Misc/Arw_Left_on.gif";
		Right_off=new Image();
       Right_off.src ="../Art/Misc/Arw_Right_off.gif";
       Right_on=new Image();
       Right_on.src ="../Art/Misc/Arw_Right_on.gif";
	}
function loadButtons(image,state){
        if (document.images)
			if (state=="ON") { eval("document [\'" + image + "\'].src = " + image + "_on.src"); }
			else { eval("document [\'" + image + "\'].src = " + image + "_off.src"); }
	}
