function setHvStyle(boxId){
	var box = document.getElementById(boxId);
	if (box) box.className = "eq eq_hv";
}
function clearHvStyle(boxId){
	var box = document.getElementById(boxId);
	if (box) box.className = "eq";
}
