﻿document.onselectstart = function() { return false; } 


function switchmodTag(modtag, modcontent, modk) {
    for (i = 1; i < 4; i++) {
        if (i == modk) {
            document.getElementById(modtag + i).className = "menuOn"; document.getElementById(modcontent + i).className = "slidingList";
        }
        else {
            document.getElementById(modtag + i).className = "menuNo"; document.getElementById(modcontent + i).className = "slidingList_none";
        }
    }
}


