//Contents Page JavaScript
//Handles OnMouseOver and OnMouseOut events, and loads required graphics
//Generated by Argo City Rollover Generator

browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
		if ((browserName == "Netscape" && browserVer >= 3)||(browserName == "Microsoft Internet Explorer" && browserVer >= 4)) version = "n3";
		else version = "n2";

	if (version == "n3") {

		b1_on = new Image;
		b1_on.src = "cnt_imgs/cnt_02_on.jpg";
		b1_off = new Image;
		b1_off.src = "cnt_imgs/cnt_02_off.jpg";

		b2_on = new Image;
		b2_on.src = "cnt_imgs/cnt_03_on.jpg";
		b2_off = new Image;
		b2_off.src = "cnt_imgs/cnt_03_off.jpg";

		b3_on = new Image;
		b3_on.src = "cnt_imgs/cnt_04_on.jpg";
		b3_off = new Image;
		b3_off.src = "cnt_imgs/cnt_04_off.jpg";

		b4_on = new Image;
		b4_on.src = "cnt_imgs/cnt_05_on.jpg";
		b4_off = new Image;
		b4_off.src = "cnt_imgs/cnt_05_off.jpg";

		b5_on = new Image;
		b5_on.src = "cnt_imgs/cnt_06_on.jpg";
		b5_off = new Image;
		b5_off.src = "cnt_imgs/cnt_06_off.jpg";

		b6_on = new Image;
		b6_on.src = "cnt_imgs/cnt_07_on.jpg";
		b6_off = new Image;
		b6_off.src = "cnt_imgs/cnt_07_off.jpg";

		b7_on = new Image;
		b7_on.src = "cnt_imgs/cnt_08_on.jpg";
		b7_off = new Image;
		b7_off.src = "cnt_imgs/cnt_08_off.jpg";

		b8_on = new Image;
		b8_on.src = "cnt_imgs/cnt_09_on.jpg";
		b8_off = new Image;
		b8_off.src = "cnt_imgs/cnt_09_off.jpg";

		b9_on = new Image;
		b9_on.src = "cnt_imgs/cnt_10_on.jpg";
		b9_off = new Image;
		b9_off.src = "cnt_imgs/cnt_10_off.jpg";

	}

     function img_act(imgName, tip) {
	if (version == "n3") {
		//Set Image to Glowing
		if (document.all) {
			imgOn = eval(imgName + "_on.src");
			document[imgName].src = imgOn;
		}

		//Set Tooltip
//		if (parent.info.document.all) {
//			parent.info.cTooltips.innerHTML = tip;
//		}
	}
     }

     function img_inact(imgName, tip) {
	if (version == "n3") {
		//Set Image to Not-Glowing
		if (document.all) {
			imgOff = eval(imgName + "_off.src");
			document[imgName].src = imgOff;
		}

		//Set Tooltip
//		if (parent.info.document.all) {
//			if (tip == "") {
//				parent.info.cTooltips.innerHTML = 'Welcome to Argo City - The Theme Home of Supergirl';
//			} else {
//				parent.info.cTooltips.innerHTML = tip;
//			}
//		}
	}
     }
