var kolstrok = 10;



//меню 1

function CheckColor(which) {
	oA = which.parentNode.getElementsByTagName("A")[0];
	oChBox = which.parentNode.getElementsByTagName("INPUT")[0];
	if (oChBox.checked == true) oA.className = "filter2";
	else oA.className = "filter";
}

function CheckThisBox(which) {
	oChBox = which.parentNode.getElementsByTagName("INPUT")[0];	
	if (oChBox.checked == false) oChBox.checked = true;
	else oChBox.checked = false;
   CheckColor(oChBox);
}



//выпадающее меню

function hideAll() {
	for (i = 1; i < kolstrok; i++){
	document.getElementById("L"+i).className = "CM";
	document.getElementById("MENUTD"+i).style.display = "none";
	}
	}


function openmenu(x) {	
   hideAll();

	document.getElementById("L"+x).className = "MbgView";
	if (navigator.appName == "Netscape") document.getElementById("MENUTD"+x).style.display = "table-cell";
	else document.getElementById("MENUTD"+x).style.display = "inline-block";
}


