/*
*  Common Javascript
*/

function setActiveTab( currentTabURL )
{
    currentTab = 1; // defaults to home
    if ( currentTabURL.indexOf( 'news' ) != -1 )
        currentTab = 2;
    else if ( currentTabURL.indexOf( 'products' ) != -1 )
        currentTab = 3;
    else if ( currentTabURL.indexOf( 'services' ) != -1 )
        currentTab = 4;
    else if ( currentTabURL.indexOf( 'about' ) != -1 )
        currentTab = 5;
    else if ( currentTabURL.indexOf( 'contact' ) != -1 )
        currentTab = 6;
        
    for ( var i = 1; i < 7; i ++ )
    {
        if ( currentTab == i ) 
            document.getElementById( "t" + i ).className = "front-tab";
        else
            document.getElementById( "t" + i ).className = "back-tab";
    }
}