//This first line is to ensure the ready function fires if the back button is used to reach the page
history.navigationMode = 'compatible';
$(document).ready(function(){
	var ScrollableHeight = $('#scrollable').height();

	if (ScrollableHeight > 190) {
		$("#scrollable").simplyScroll({
			className: 'vert',
			horizontal: false,
			frameRate: 25,
			speed: 3
		});
	} else {
		$('.simply-scroll-btn').hide();
	}
});
