function on(co,styl)
{
var styl2=styl+'_on';
co.className=styl2;
}

function off(co,styl)
{
co.className=styl;
}

function rover(obj, img) {
	obj.src = 'i/menu/' + img + '_on.gif';
}
function rout(obj, img) {
	obj.src = 'i/menu/' + img + '.gif';
}

function menu_on(id)
{

nazwa='m'+id;
cel = document.getElementById(nazwa);

cel.className='menu_oferta_on';
}

function menu_off(id)
{
nazwa='m'+id;
cel = document.getElementById(nazwa);

cel.className='menu_oferta_off';
}

function formkontakt()
{
if(confirm("Czy chcesz wysłać wiadomość?")){ return true;}else{return false;}

}
