﻿// JScript File
function MenuNormal(t){

    t.style.color='white';
    t.style.cursor='normal';
    t.style.backgroundColor='';

}

function MenuHover(t){

    t.style.color='white';
    t.style.cursor='hand';
    t.style.backgroundColor='#B38424';
    t.style.backgroundColor='#730810';
    

}

function showElem(t) {

    t.style.display = '';

}

function hideElem(t) {

    t.style.display = 'none';

}

function toggleElem(t) {

    if (t.style.display == 'none'){
        t.style.display = '';
    }
    else {
        t.style.display = 'none';
    }

}

function imageMouseDown(t){
    t.style.border = 'solid 2px silver';
    
}

function imageMouseUp(t){
    t.style.border = '';
    
}
