function ban (){
yo=100;
xo=265;
dx = parseInt (document.body.clientWidth);
hy = parseInt (document.body.clientHeight);
obiekt = document.getElementById('baner');
dy=document.body.scrollTop;

//obiekt.style.top  = dy + hy-130;
obiekt.style.top  = parseInt(obiekt.style.top) +  ((dy + hy-130)-parseInt(obiekt.style.top))/5;
obiekt.style.left  = dx/2 - xo;

setTimeout("ban()",20);

}