If you're looking to enhance your website's scrolling functionality, check out the jQuery custom content scroller plugin here
Make sure to add jquery.mCustomScrollbar.css in the head section of your HTML document
<link href="jquery.mCustomScrollbar.css" rel="stylesheet" type="text/css" />
Don't forget to include the jQuery library as well
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="jquery.mCustomScrollbar.concat.min.js"></script>
Finally, make use of the mCustomScrollbar function
<script>
(function($){
$(window).load(function(){
$(".content").mCustomScrollbar();
});
})(jQuery);
Check out the demo here