var $j = jQuery.noConflict();

function initScrollbars(){
	isIE7 = false;
	jQuery.each(jQuery.browser, function(i, val) {
		var v = parseInt(jQuery.browser.version.substr(0,1));
		if(i=="msie" && v == 7){
			isIE7 = true;
		}
	});
	if(!isIE7){
		$j('.scrollable').css('overflow-x', 'hidden');
		$j('.scrollable').css('overflow-y', 'auto');
	}
	else{
		 $j('.scrollable').jScrollPane({showArrows:true, scrollbarWidth: 17, wheelSpeed: 100, animateInterval: 30});
	}
}

$j(document).ready(function() {
	initScrollbars();
});
