position:fixed - Опера, ФФ, ИЕ 7
Для ИЕ 6.0 и меньше примерно так:
Код:
<script>
var w;
window.onscroll = function ()
{
w = document.documentElement.scrollTop + 80;
document.getElementById('plav').style.top = w+ 'px';
}
</script>
<div id="plav" style="position:absolute; top:80px; left:5px; width:100px; height:100px; background:#CCC;></div>