looking at apples scroller you could just erm..borrow theirs.
in your <head> section put:
HTML:
<script type="text/javascript" src="scrollinator.js"></script>
<script type="text/javascript">
function myInit() {
new AC.Scrollinator('scroller',
AC.Scrollinator.Strategies.Left,
$('scroller').getElementsByTagName('img') );
}
Event.observe(window, 'load', myInit, false);
</script>
then put in a div with id scroller in you page where you want the scroller to appear:
HTML:
<div id="scroller" class="scroller">
<img src="eg1.jpg">
<img src="eg2.jpg">
<img src="eg3.jpg">
</div>
and upload the attached scrollinator.js
dno if it would work and i dont know if that would count as copying