

var t_color	= "#04184d";
var h_color	= "#FFFFFF";
var b_color	= "#BFD5EC";


function rf_active()
{
    document.getElementById('rf_td').style.background=h_color;
    document.getElementById('rr_td').style.background=b_color;
    document.getElementById('rl_td').style.background=b_color;
}

function rr_active()
{
    document.getElementById('rf_td').style.background=b_color;
    document.getElementById('rr_td').style.background=h_color;
    document.getElementById('rl_td').style.background=b_color;
}

function rl_active()
{
    document.getElementById('rf_td').style.background=b_color;
    document.getElementById('rr_td').style.background=b_color;
    document.getElementById('rl_td').style.background=h_color;
}


function sf_active()
{
    document.getElementById('sf_td').style.background=h_color;
    document.getElementById('ss_td').style.background=b_color;
    document.getElementById('sl_td').style.background=b_color;
}

function ss_active()
{
    document.getElementById('sf_td').style.background=b_color;
    document.getElementById('ss_td').style.background=h_color;
    document.getElementById('sl_td').style.background=b_color;
}

function sl_active()
{
    document.getElementById('sf_td').style.background=b_color;
    document.getElementById('ss_td').style.background=b_color;
    document.getElementById('sl_td').style.background=h_color;
}

