
//These are the rollovers all navigation elements
if (document.images) {            // Active Images
memberLog_on = new Image();
memberLog_on.src = "/images/v1/m_members_on.gif";
memberLogOff_on = new Image();
memberLogOff_on.src = "/images/v1/m_memberLogOff_on.gif";
joinCZ_on = new Image();
joinCZ_on.src = "/images/v1/m_join_on.gif";
// OFF ROLLOVER LIST
memberLog_off = new Image();
memberLog_off.src = "/images/v1/m_members_off.gif";
memberLogOff_off = new Image();
memberLogOff_off.src = "/images/v1/m_memberLogOff_off.gif";
joinCZ_off = new Image();
joinCZ_off.src = "/images/v1/m_join_off.gif";
}
// Function to 'activate' images.
function imgOn(imgName) 
{
	if (document.images) 
	{
		document[imgName].src = eval(imgName + "_on.src");
	}
}
// Function to 'deactivate' images.
function imgOff(imgName) 
{
	if (document.images) 
	{
	document[imgName].src = eval(imgName + "_off.src");
	}
}

