/*Home page News and WP tabs*/
function toggleTabsOLD(tabActive,OnDiv,OffDiv) {

    if (OnDiv == "KaminarioNews") {
        document.getElementById("NewsTab").style.background = "transparent url(http://www.kaminario.com/News_tab.png) top left no-repeat";
        document.getElementById("NewsTabText").style.color = "#fff";
        document.getElementById("WPTab").style.background = "transparent url(http://www.kaminario.com/WP_tab_off.png) top right no-repeat";
        document.getElementById("WPTabText").style.color = "#233780";
    }
    if (OnDiv == "KaminarioWP") {    
        document.getElementById("NewsTab").style.background = "transparent url(http://www.kaminario.com/News_tab_off.png) top left no-repeat";
        document.getElementById("NewsTabText").style.color = "#233780";
        document.getElementById("WPTab").style.background = "transparent url(http://www.kaminario.com/WP_tab.png) top right no-repeat";
        document.getElementById("WPTabText").style.color = "#fff";
    }
    
    document.getElementById(OnDiv).className = "DivOn";
    document.getElementById(OffDiv).className = "DivOff";
}

function toggleTabs(tabActive,OnDiv,OffDiv) {

    if (OnDiv == "KaminarioNews") {
        document.getElementById("NewsTab").style.background = "transparent url(http://www.kaminario.com/bkg-news-tabs-first-on-gradient.png) top left no-repeat";
        document.getElementById("NewsTabText").style.color = "#333";
        document.getElementById("WPTab").style.background = "transparent url(http://www.kaminario.com/bkg-news-tabs-last-off-gradient.png) top right no-repeat";
        document.getElementById("WPTabText").style.color = "#178FDB";
    }
    if (OnDiv == "KaminarioWP") {    
        document.getElementById("NewsTab").style.background = "transparent url(http://www.kaminario.com/bkg-news-tabs-first-off-gradient.png) top left no-repeat";
        document.getElementById("NewsTabText").style.color = "#178FDB";
        document.getElementById("WPTab").style.background = "transparent url(http://www.kaminario.com/bkg-news-tabs-last-on-gradient.png) top right no-repeat";
        document.getElementById("WPTabText").style.color = "#333";
    }
    
    document.getElementById(OnDiv).className = "DivOn";
    document.getElementById(OffDiv).className = "DivOff";
}



