function on(co,styl)
{
var styl2=styl+'_on';
co.className=styl2;
}

function off(co,styl)
{
co.className=styl;
}

function poz(){
var divBe = document.getElementById("made");
divBe.innerHTML='Realizacja: www.Belart.pl';
}


function rollover(obj, img) {
        obj.src = 'i/' + img + '_on.jpg';
}
function rollout(obj, img) {
        obj.src = 'i/' + img + '.jpg';
}

function go(adres)
{
if(adres!=0){
location.href=adres;}
}




function menu_on(id)
{

nazwa='m'+id;
cel = document.getElementById(nazwa);
if(id==1){
cel.className='menu_oferta_on';
}
if(id==2)
{
cel.className='menu_oferta_on2';
}

if(id==3)
{
cel.className='menu_oferta_on3';
}
}

function menu_off(id)
{
nazwa='m'+id;
cel = document.getElementById(nazwa);

cel.className='menu_oferta_off';
}
