// Browser Detect
bName = navigator.appName; //detect for Netscape 3+ or IE 4+
bVer = parseInt(navigator.appVersion);
if ((bName == "Netscape" && bVer >= 3) ||
	(bName == "Microsoft Internet Explorer" && bVer >=4)) br = "n3";
else br = "n2";
// Create image objects, preload all active and inactive /images.
if (br== "n3") {
// Active
//	img01on = new Image();
//	img01on.src = "/jlt/gabriels/images/b_h2.gif";
//	img02on = new Image();
//	img02on.src = "/jlt/gabriels/images/b_ab2.gif";
//	img03on = new Image();
//	img03on.src = "/jlt/gabriels/images/b_me2.gif";
//	img04on = new Image();
//	img04on.src = "/jlt/gabriels/images/b_wl2.gif";
//	img05on = new Image();
//	img05on.src = "/jlt/gabriels/images/b_pd2.gif";
//	img06on = new Image();
//	img06on.src = "/jlt/gabriels/images/b_app2.gif";
//	img07on = new Image();
//	img07on.src = "/jlt/gabriels/images/b_sal2.gif";
//	img08on = new Image();
//	img08on.src = "/jlt/gabriels/images/b_pas2.gif";
//	img09on = new Image();
//	img09on.src = "/jlt/gabriels/images/b_ent2.gif";
//	img10on = new Image();
//	img10on.src = "/jlt/gabriels/images/b_des2.gif";
//	img11on = new Image();
//	img11on.src = "/jlt/gabriels/images/b_deg2.gif";



	



	
// Inactive
//	img01off = new Image();
//	img01off.src = "/jlt/gabriels/images/b_h1.gif";
//	img02off = new Image();
//	img02off.src = "/jlt/gabriels/images/b_ab1.gif";
//	img03off = new Image();
//	img03off.src = "/jlt/gabriels/images/b_me1.gif";
//	img04off = new Image();
//	img04off.src = "/jlt/gabriels/images/b_wl1.gif";
//	img05off = new Image();
//	img05off.src = "/jlt/gabriels/images/b_pd1.gif";
//	img06off = new Image();
//	img06off.src = "/jlt/gabriels/images/b_app1.gif";
//	img07off = new Image();
//	img07off.src = "/jlt/gabriels/images/b_sal1.gif";
//	img08off = new Image();
//	img08off.src = "/jlt/gabriels/images/b_pas1.gif";
//      img09off = new Image();
//	img09off.src = "/jlt/gabriels/images/b_ent1.gif";
//	img10off = new Image();
//	img10off.src = "/jlt/gabriels/images/b_des1.gif";
//	img11off = new Image();
//	img11off.src = "/jlt/gabriels/images/b_deg1.gif";


	
}

function imgAct(imgName) {
	if (br == "n3") {
		document[imgName].src = eval(imgName + "on.src");
	}
}

function imgInact(imgName) {
	if (br == "n3") {
		document[imgName].src = eval(imgName + "off.src");
	}
}