<!--

var InMenuState=0;

if (document.images) {

   Homeowners_off=new Image();
   Homeowners_off.src="/images/homeowner/menu/1_Homeowners.gif";
   Homeowners_on=new Image();
   Homeowners_on.src="/images/homeowner/menu/1_Homeowners_Rollover.gif";

   Home_Improvement_off=new Image();
   Home_Improvement_off.src="/images/homeowner/menu/2_Home_Improvement.gif";
   Home_Improvement_on=new Image();
   Home_Improvement_on.src="/images/homeowner/menu/2_Home_Improvement_Rollover.gif";

   Incentives_off=new Image();
   Incentives_off.src="/images/homeowner/menu/3_Incentives.gif";
   Incentives_on=new Image();
   Incentives_on.src="/images/homeowner/menu/3_Incentives_Rollover.gif";

   Happenings_off=new Image();
   Happenings_off.src="/images/homeowner/menu/4_Happenings.gif";
   Happenings_on=new Image();
   Happenings_on.src="/images/homeowner/menu/4_Happenings_Rollover.gif";

   Buying_A_Home_off=new Image();
   Buying_A_Home_off.src="/images/homeowner/menu/5_Buying_a_Home.gif";
   Buying_A_Home_on=new Image();
   Buying_A_Home_on.src="/images/homeowner/menu/5_Buying_a_Home_Rollover.gif";

   Maintenance_off=new Image();
   Maintenance_off.src="/images/homeowner/menu/6_Maintenance.gif";
   Maintenance_on=new Image();
   Maintenance_on.src="/images/homeowner/menu/6_Maintenance_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;
}
-->