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';    
}