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

function gal_off(id)
    {
        document.getElementById(id).style.backgroundColor ='#FFFFFF';
    }   
 
function intro_on(id)
    {
    document.getElementById(id).style.background ='url(img/bg-shop.gif) repeat-y right top';
     }

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