(function ($) {
	if (!$.browser.opera || parseFloat($.browser.version) >= 9) {
		$(function () {
			var o = {
				scrollbarWidth:	9,
				showArrows:		true,
				arrowSize:		11
			};
			var p = $('#content .jscroll');
			p.each(function () {
				var $t = $(this),
					s = {
						'overflow': 'hidden',
						'height': $t.parent().innerHeight() + 'px',
						'padding-right': '0px'	
					};
				$t.css(s).jScrollPane(o);
			});
		});		
	}
})(jQuery);

