$(document).ready(function() {		
		$(function() {
			$("div#pane5").smoothDivScroll({scrollingSpeed: 20, mouseDownSpeedBooster: 4, visibleHotSpots: "always"});
		});		
		
		$('.scrollingHotSpotLeft').hide();
		$('#content_wrapper').hover(function(){
			$('.scrollingHotSpotRight, .scrollingHotSpotLeft').fadeIn('fast');
		},
		function(){
			$('.scrollingHotSpotRight, .scrollingHotSpotLeft').fadeOut('fast');
		});		

		$('html, body').css('overflow', 'hidden');	
	});	