/**
 * jq_scrollBox Sep 2009 Version 1.0
 */
	
$(function() {
	var scrollOptions =
    	{
        	'showArrows': true,
            'arrowSize': 11,
            'wheelSpeed': 30,
            'scrollbarWidth': 12,
			'reinitialiseOnImageLoad': true
		};
	$('.scroll-box').jScrollPane(scrollOptions);
});

