 
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (browserName == "Netscape" && browserVer >= 3) {
	version = "n3";
	}
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) {
	version = "n3";
	}
else {
	version = "n2";
}
 
//		version = "n3";
        if (version == "n3")         {
 
				a0off= new Image(85,37);
				a0off.src = "/templates/mgl/images/n1_welcome.gif";
				a0on= new Image(85,37);
				a0on.src = "/templates/mgl/images/n1_welcome_alt.gif"
 
				a1off= new Image(137,37);
				a1off.src = "/templates/mgl/images/n1_create-registry.gif";
				a1on= new Image(137,37);
				a1on.src = "/templates/mgl/images/n1_create-registry_alt.gif"
 
				a2off= new Image(123,37);
				a2off.src = "/templates/mgl/images/n1_find-registry.gif";
				a2on= new Image(123,37);
				a2on.src = "/templates/mgl/images/n1_find-registry_alt.gif"
 
				a3off= new Image(76,37);
				a3off.src = "/templates/mgl/images/n1_gift-ideas.gif";
				a3on= new Image(76,37);
				a3on.src = "/templates/mgl/images/n1_gift-ideas_alt.gif"
 
				a4off= new Image(129,37);
				a4off.src = "/templates/mgl/images/n1_charity-donations.gif";
				a4on= new Image(129,37);
				a4on.src = "/templates/mgl/images/n1_charity-donations_alt.gif"
 
				a5off= new Image(93,37);
				a5off.src = "/templates/mgl/images/n1_shop-online.gif";
				a5on= new Image(93,37);
				a5on.src = "/templates/mgl/images/n1_shop-online_alt.gif"
 
				a6off= new Image(128,37);
				a6off.src = "/templates/mgl/images/n1_merchant-affiliates.gif";
				a6on= new Image(128,37);
				a6on.src = "/templates/mgl/images/n1_merchant-affiliates_alt.gif"
 
        }
 
function img_act(imgName) {
        if (version == "n3") {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
        }
}
 
 
function img_inact(imgName) {
        if (version == "n3") {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
        }
}
 

