Какие сложности очуметь.
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">window.onload=function(){
var scrl=document.getElementById('scroll');
window.onscroll=function(){
if (document.documentElement.scrollTop>100) scrl.style.cssText='position:fixed;top:0px;';
else scrl.style.cssText='';
}
}
</script>
<style type="text/css">
body{padding:1000px 5px}
#scroll{
top:100px;
border:1px solid #000;
position:absolute;
}
</style>
</head>
<body>
<div id="scroll">блок</div>
</body>
</html>