<!--
var chkvalue = false;

function mnuOn(obj)
{
	if(obj.className!="onpage"&&obj.src.indexOf("_on")==-1)
	{
		if(obj.style && typeof(obj.style.filter) =="string")
		{
			obj.style.filter = "blendTrans(duration=0.5)";
			blend(obj);
		}
		obj.src = obj.src.replace(".gif", "_on.gif");
	}
	else
	{
		chkvalue = true;
	}
}

function mnuOut(obj)
{
	if(obj.className!="onpage"&&!chkvalue)
	{
		if(obj.style && typeof(obj.style.filter) =="string")
		{
			obj.style.filter = "blendTrans(duration=0.5)";
			blend(obj);
		}
		obj.src = obj.src.replace("_on.gif", ".gif");
	}
	else
	{
		chkvalue = false;
	}
}

function blend(obj)
{
	obj.filters.blendTrans.stop();
	obj.filters.blendTrans.Apply();
	obj.filters.blendTrans.Play();
}
//-->