gora=0;
szybkosc=8

function menuGo()
{
 oBy=(szybkosc*oBy+celY)/(szybkosc+1);
 document.getElementById('bannerKon').style.top=Math.round(oBy)-400;
 if(Math.round(oBy)!=celY) anim=setTimeout("menuGo()",20);
 else anim=0;
}

function initMenu(){
 oBy=gora;
 celY=350 + 150;
 document.getElementById('bannerKon').style.display = 'block';
 setTimeout('menuGo()',100);

}

document.getElementById('bannerKon').style.display = 'none';
document.getElementById('bannerKon').style.top=-400;
initMenu();