Scrollbars is an easy to use, jQuery plugin which enables you to create themeable scrollbars.
Notice: ALWAYS put the css before the javascript!!!!
First you have to include the base css files
<link href="jquery.scrollbars.css" rel="stylesheet" type="text/css" />
Include a theme if you would like. You can also write your own
Then add in jQuery
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
Include jQuery Mousewheel if you want mousewheel support
<script type="text/javascript" src="http://brandonaaron.net/javascripts/plugins/mousewheel.js"></script>
Then add in Scrollbars
<script type="text/javascript" src="jquery.scrollbars.min.js"></script>
Then initialize
<script type="text/javascript">
$(document).ready(function() {
$('*').scrollbars();
})
</script>