var browserVer = parseInt(navigator.appVersion);
var version = 0; if (browserVer >= 3) version = 1;

if(version) {
	OR0on = new Image(); OR0on.src = "icons/ORreflectionsO.gif";
	OR1on = new Image(); OR1on.src = "icons/ORchildrenO.gif";
	OR2on = new Image(); OR2on.src = "icons/ORyouthO.gif";
	OR3on = new Image(); OR3on.src = "icons/ORcalendarO.gif";
	OR4on = new Image(); OR4on.src = "icons/ORpublicationsO.gif";
	OR5on = new Image(); OR5on.src = "icons/SGMiconO.gif";
	OR6on = new Image(); OR6on.src = "icons/GFCMiconO.gif";
	OR7on = new Image(); OR7on.src = "icons/ORO.gif";
	OR8on = new Image(); OR8on.src = "icons/ORinseasonO.gif";
	OR9on = new Image(); OR9on.src = "icons/ORsermonsO.gif";
             
	OR0off = new Image(); OR0off.src = "icons/ORreflections.gif";
	OR1off = new Image(); OR1off.src = "icons/ORchildren.gif";
	OR2off = new Image(); OR2off.src = "icons/ORyouth.gif";
	OR3off = new Image(); OR3off.src = "icons/ORcalendar.gif";
	OR4off = new Image(); OR4off.src = "icons/ORpublications.gif";
	OR5off = new Image(); OR5off.src = "icons/SGMicon.gif";
	OR6off = new Image(); OR6off.src = "icons/GFCMicon.gif";
	OR7off = new Image(); OR7off.src = "icons/OR.gif";
	OR8off = new Image(); OR8off.src = "icons/ORinseason.gif";
	OR9off = new Image(); OR9off.src = "icons/ORsermons.gif";
	}

function img_act (imgName) {
	if (version == 1) {
		imgOn = eval(imgName + "on.src");
		document [imgName].src = imgOn;
		}
	}
function img_inact (imgName) {
	if (version == 1) {
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff; 
		}
	}
