// JavaScript Document

function $(objid){
	return document.getElementById(objid);
}

function plan_menu(obj){
    //alert(obj.id.length);
	var objnum = obj.id.substring(1, obj.id.length);
	//alert(objnum)
	for(var i = 1; i < 4; i ++){
		if(objnum == i){
			$("a" + i).className = "ahover";
		}else{
			$("a" + i).className = "";
		}
	}
}

function tvHover(m) {
	if(m==1){
		$('hv').style.display = "block";
	} else {
		$('hv').style.display = "none";
	}
}


