function switchtabh(n){
for(var i = 1; i <= 3; i++){
document.getElementById("tabh_" + i).className = "";
document.getElementById("tab_conh_" + i).style.display = "none";
}
document.getElementById("tabh_" + n).className = "on";
document.getElementById("tab_conh_" + n).style.display = "block";
}