﻿function mt1adminDrop(id) {
    document.getElementById('mt1-customer-menu-' + id).className = "mt1-child-links";
    if (document.getElementById('mt1-active-' + id).className != 'mt1-active-link')
        document.getElementById('mt1-active-' + id).className = 'mt1-admin-hover';
}

function mt1hideadmin(id) {
    document.getElementById('mt1-customer-menu-' + id).className = "mt1-child-links mt1-hide";
    if (document.getElementById('mt1-active-' + id).className != 'mt1-active-link')
        document.getElementById('mt1-active-' + id).className = 'mt1-admin-link';
}
