This is the code
<HTML>
<HEAD>
<TITLE>Document Title</TITLE>
<script type="text/javascript">
<!--
defaultStep=1
step=defaultStep
function scrollDivDown(id){
clearTimeout(timerDown)
document.getElementById(id).scrollTop+=step
timerDown=setTimeout("scrollDivDown('"+id+"')",10)
}
function scrollDivUp(id){
clearTimeout(timerUp)
document.getElementById(id).scrollTop-=step
timerUp=setTimeout("scrollDivUp('"+id+"')",10)
}
timerDown=""
timerUp=""
function stopMe(){
clearTimeout(timerDown)
clearTimeout(timerUp)
}
//for onclick events
//document.onmousemove=function(){stopMe()}
// -->
</script>
</HEAD>
<BODY>
<P></P>
<div id="div1" style="width:300px; height:300px; overflow:hidden">
<b>LAYER CONTENTS</b>
<P>Some Text<P>SOME TEXT<P>Some Text<P>SOME TEXT
<P>Some Text<P>SOME TEXT<P>Some Text<P>SOME TEXT
<P>Some Text<P>SOME TEXT<P>Some Text<P>SOME TEXT
<P>Some Text<P>SOME TEXT<P>Some Text<P>End
</div>
<img src="images/arrowdown.gif" onmouseover="scrollDivDown('div1')" onMouseOut="stopMe()"/>
<img src="images/arrowup.gif" onmouseover="scrollDivUp('div1')" onMouseOut="stopMe()"/>
<div style="font-size:12px; margin-top:5px; width:300px; padding-left:2px">
<img style="padding-left:5px; padding-right:5px" src="http://image.allmusic.com/00/acg/pic100/drz000/z085/z08555fem4l.jpg" alt="JoAnn Falletta" width="50" height="100" align="left" class="alignleft"/>With thdgdfgdfgfdge opening of the 2008-09 Concert Season, conductor JoAnn Falletta is celebrating her 10th anniversary as music director of the Buffalo Philharmonic, an orchestra frequently shortlisted as one the best in the United States and which continues to thrive even as subscriptions are down elsewhere. Falletta's is a name also familiar from recordings; in just short of two decades she has managed to make more than 50 of them for labels such as Naxos, Koch, Delos, Albany, and others.
<p>
</p>
</div>
</BODY>
</HTML>
The whole point is hiding the scrollbar so the scrollling is done through the images, the problem is how to use the wheel on that div someone kindly suggested seeing this but couldn't understand much though if anyone with exp in javascript could lend a hand I'd appreciate it