// execute your scripts when the DOM is ready. this is mostly a good habit
$(function() {
	// initialize scrollable
	$(".scrollCenter").scrollable();
    $(".scrollTopLeft").scrollable();
    $(".scrollTopRight").scrollable();
    $(".scrollBotLeft").scrollable();
    $(".scrollBotCenter").scrollable();
    $(".scrollBotRight").scrollable();
    $(".scrollVertical").scrollable({ vertical: true, mousewheel: true });

});
