function button_on(id)
    {
    document.getElementById(id).style.backgroundColor ='#ECECEC';
    document.getElementById(id).style.Color ='#0000ff';
     }

function button_off(id)
    {
        document.getElementById(id).style.backgroundColor ='';
        document.getElementById(id).style.Color ='#0000ff';
    }

function button_on_tab(id)
    {
    document.getElementById(id).style.backgroundColor ='#336699';
     }    
 function gal_on(id)
    {
    document.getElementById(id).style.backgroundColor ='#e21515';
     }

function gal_off(id)
    {
        document.getElementById(id).style.backgroundColor ='#FFFFFF';
    }   
 
 function intro_on(id)
    {
    document.getElementById(id).style.background ='url(img/bg-intro-bott.gif) repeat-x 0 bottom';
     }

function intro_off(id)
    {
        document.getElementById(id).style.background ='';
    }   
