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

function button_off(id)
    {
        document.getElementById(id).style.backgroundColor ='';
    }
    
 function gal_on(id)
    {
    document.getElementById(id).style.backgroundColor ='#CA3932';
     }

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