<!--
//----------------------------------------------------------

var ie4 = document.all;
var ns4 = document.layers;
var ns6 = document.getElementById && !document.all;
function getObject(objId)
{
        if (ie4)
			return document.all.item(objId);

        if (ns4)
			return document.layers[objId];

        if (ns6) 
			return document.getElementById(objId);
}
function Check(name, menuid){
	theI = getObject(menuid);
	theI.src = "/img/" + name + ".gif";
}

function RamkaOver(menuid){
	theI = getObject(menuid);
	theI.src = "/img/ramka_gif.gif";
	theO = getObject("m" + menuid);
	theO.className = "m";
}

function RamkaOut(menuid){
	theI = getObject(menuid);
	theI.src = "/img/ramka.gif";
	theO = getObject("m" + menuid);
	theO.className = "m_hover";

}

function menuOver(menuid){
	theI = getObject(menuid);
	theI.src = "/img/" + menuid + "_b.gif";
}

function menuOut(menuid){
	theI = getObject(menuid);
	theI.src = "/img/" + menuid + ".gif";
}




//----------------------------------------------------------
//-->