function mouseoverSideBar(x,y) {
    x.style.cursor = 'pointer';
    x.style.border = '1px solid #AAAAAA';
    x.style.backgroundColor = '#000040';
    x.style.backgroundImage = 'url(images/button_highlight.jpg)';

    document.getElementById(y + '_top').style.visibility = 'visible';
    document.getElementById(y + '_bot').style.visibility = 'visible';
}
function mouseoutSideBar(x,y) {
    if(navigator.appName.indexOf("Microsoft") != -1) {
        x.style.border = '1px solid #46566D';
    }
    else {
        x.style.border = '1px solid transparent';
    }
    x.style.backgroundColor = 'transparent';
    x.style.backgroundImage = 'none';

    document.getElementById(y + '_top').style.visibility = 'hidden';
    document.getElementById(y + '_bot').style.visibility = 'hidden';
}
function mouseoverBottomBar(x,y) {
    x.style.cursor = 'pointer';
    document.getElementById(y + '_div').style.backgroundColor = '#505064';
}
function mouseoutBottomBar(x) {
    document.getElementById(x + '_div').style.backgroundColor = 'transparent';
}

function mouseoverStub(x) {
    x.style.cursor = 'pointer';
    x.style.border = '1px solid #808080';
    x.style.padding = '2px 2px 2px 2px';
    x.style.backgroundColor = '#EEEEEE';
}
function mouseoutStub(x) {
    x.style.border = '1px none #808080';
    x.style.padding = '3px 3px 3px 3px';
    x.style.backgroundColor = 'transparent';
}

function mouseoverAccount(x) {
    x.style.border = '1px solid #808080';
    x.style.backgroundColor = '#C2D0D9';
}
function mouseoutAccount(x) {
    x.style.border = '1px solid #C0C0C0';
    x.style.backgroundColor = '#EEEEEE';
}
