jQuery.noConflict();
jQuery(function($){
	// Attach fancy scrollers
	$('.fancyscroll').each(function (i) {
		$(this)
			.css('overflow-y','auto')
			.css('overflow-x','hidden')
			.wrapInner(document.createElement('div'))
			.children('div')
				.width( $(this).width() )
				.height( $(this).height() )
				.css('overflow','hidden')
				.jScrollPane({
					scrollbarWidth:13,
					scrollbarMargin:10,
					dragMinHeight:25,
					dragMaxHeight:50
				});
	});
});