<!--

var InMenuState=0;

if (document.images) {

   Information_off=new Image();
   Information_off.src="/images/template/Information_NonHomepage.gif";
   Information_on=new Image();
   Information_on.src="/images/template/Information_NonHomepage_Rol.gif";

   About_off=new Image();
   About_off.src="/images/template/ABOUT_Normal.gif";
   About_on=new Image();
   About_on.src="/images/template/ABOUT_Rollover.gif";

   Resources_off=new Image();
   Resources_off.src="/images/template/Resources_Normal.gif";
   Resources_on=new Image();
   Resources_on.src="/images/template/Resources_Rollover.gif";

   Tools_off=new Image();
   Tools_off.src="/images/template/Tools_Normal.gif";
   Tools_on=new Image();
   Tools_on.src="/images/template/TOOLS_Rollover.gif";
   
   Practices_off=new Image();
   Practices_off.src="/images/template/Tech-Practices_Normal.gif";
   Practices_on=new Image();
   Practices_on.src="/images/template/Tech-Practices_Rollover.gif";

   Newsroom_off=new Image();
   Newsroom_off.src="/images/template/Newsroom_Normal.gif";
   Newsroom_on=new Image();
   Newsroom_on.src="/images/template/Newsroom_Rollover.gif";

   Search_off=new Image();
   Search_off.src="/images/template/Search_Normal.gif";
   Search_on=new Image();
   Search_on.src="/images/template/Search_Rollover.gif";
}


function imgOn(imgName) {
	if (document.images) {
		document.images['img_' + imgName].src=eval(imgName+"_on.src");
	}
}

function imgOff(imgName) {
	if (document.images) {
		document.images['img_' + imgName].src=eval(imgName+"_off.src");
	}
}

function doMouseOver(groupID,Direction) {
	imgOn(groupID);
	cswmShow(groupID, 'img_' + groupID, 'below');
}
function doMouseOut(groupID) {
	if (InMenuState==0) {
		imgOff(groupID);
	}
	cswmHide();
}

function doMenuHide(groupID) {
	InMenuState=0;
	imgOff(groupID);
}
function doMenuShow(groupID) {
	InMenuState=1;
}
-->