var strPathToRoot = '/';

function buttonOver(e) {
 
    e.style.backgroundImage = "url('" + strPathToRoot + "images/gb_tab_1px_" + intSiteChannelID + "_over.png')";
    document.getElementById(e.id + 'Left').src = strPathToRoot + 'images/gb_left_' + intSiteChannelID + '_over.png';
    document.getElementById(e.id + 'Right').src = strPathToRoot + 'images/gb_right_' + intSiteChannelID + '_over.png';  
    
    
}
function buttonOut(e) {
    e.style.backgroundImage = "url('" + strPathToRoot + "images/gb_1px.png')";
    document.getElementById(e.id + 'Left').src = strPathToRoot + 'images/gb_left.png';
    document.getElementById(e.id + 'Right').src = strPathToRoot + 'images/gb_right.png';
}


function buttonOverDark(e) {

    e.style.backgroundImage = "url('" + strPathToRoot + "images/darkbutton_1px_L.png')";
    document.getElementById(e.id + 'Left').src = strPathToRoot + 'images/darkbutton_over_L.png';
    document.getElementById(e.id + 'Right').src = strPathToRoot + 'images/darkbutton_over_R.png';


}
function buttonOutDark(e) {
    e.style.backgroundImage = "url('" + strPathToRoot + "images/darkbutton_1px.png')";
    document.getElementById(e.id + 'Left').src = strPathToRoot + 'images/darkbutton_L.png';
    document.getElementById(e.id + 'Right').src = strPathToRoot + 'images/darkbutton_R.png';
}
