<!--
// Create image objects, preload all active and inactive images.
{ 
	img1on = new Image();
	img1on.src = "/images/nav/nv_small1.gif";
	img2on = new Image();
	img2on.src = "/images/nav/nv_career1.gif";
	img3on = new Image();
	img3on.src = "/images/nav/nv_personal1.gif";
	img4on = new Image();
	img4on.src = "/images/nav/nv_legal1.gif";
	img5on = new Image();
	img5on.src = "/images/nav/nv_networking1.gif";
	img6on = new Image();
	img6on.src = "/images/nav/nv_work1.gif";
	img7on = new Image();
	img7on.src = "/images/nav/nv_news1.gif";
	img8on = new Image();
	img8on.src = "/images/nav/nv_technology1.gif";

	img1off = new Image();
	img1off.src = "/images/nav/nv_small0.gif";
	img2off = new Image();
	img2off.src = "/images/nav/nv_career0.gif";
	img3off = new Image();
	img3off.src = "/images/nav/nv_personal0.gif";
	img4off = new Image();
	img4off.src = "/images/nav/nv_legal0.gif";
	img5off = new Image();
	img5off.src = "/images/nav/nv_networking0.gif";
	img6off = new Image();
	img6off.src = "/images/nav/nv_work0.gif";
	img7off = new Image();
	img7off.src = "/images/nav/nv_news0.gif";
	img8off = new Image();
	img8off.src = "/images/nav/nv_technology0.gif";

}
// Function to "activate" images.
function imgAct(imgName) {	 
		document[imgName].src = eval(imgName + "on.src");
	}

// Function to "deactivate" images.
function imgInact(imgName) {
		document[imgName].src = eval(imgName + "off.src");
	}
// Function to run the powertools flash files in a diff window
function powertools(url){
	newWindow = window.open(url,'powertools','toolbar=no,scrollbars=no,width=550,height=325');
}
 //-->
