var tag_memorya="";
var tag_memory_namea="";
function change_taga(id) {
    if (tag_memorya!="") {
        document.getElementById(tag_memorya).style.fontWeight="900";
        document.getElementById(tag_memorya).style.color="#5C5C5C";
        document.getElementById(tag_memorya).style.cursor = "hand";
        document.getElementById(tag_memorya).style.background="url('')";
        document.getElementById(tag_memorya).style.borderBottom="solid 0px;";
    }
    tag_memorya=id;
    document.getElementById(id).style.fontWeight="900";
    document.getElementById(tag_memorya).style.color="#0F5DAB";
    document.getElementById(id).style.cursor = "default";
    document.getElementById(id).style.background="url('')";
    document.getElementById(id).style.borderBottom="solid 0px;";

    var tag_content_name="tag_contenta"+id.substr((id.length-1),1);
    if (tag_memory_namea!="") {
        document.getElementById(tag_memory_namea).style.display="none";
    }
    tag_memory_namea=tag_content_name;
    document.getElementById(tag_content_name).style.display="";
}