в моем случай лучше определить высоту из #wrapper но я в js пока что ничего не понимаю..( <script type="text/javascript"> function getOffsetScreen() { var wwidth=(window.innerWidth) ? window.innerWidth : ((document.all) ? document.body.offsetWidth : null); var wheight=(window.innerHeight) ? window.innerHeight : ((document.all) ? document.body.offsetHeight : null); return {'width':wwidth,'height':wheight}; } </script> <script type="text/javascript"> var menu = document.getElementById('menu'); window.onscroll = function(){ var scroll = document.documentElement.scrollTop || document.body.scrollTop; if(scroll < document.body.offsetHeight){ menu.style.position = 'fixed'; menu.style.bottom = '0px'; }else{ menu.style.position = 'absolute'; menu.style.bottom = '135px'; } } </script> помогите пожалуйста