$(document).ready( function() {	$('#description').jScrollPane({
	showArrows: true,
	scrollbarWidth: 14,
	arrowSize: 14
	});	// $('.text-wrapper').wrap('<div class="description-wrapper" />');
	// $('.description-wrapper').jScrollPane({
		// showArrows: true,
		// scrollbarWidth: 14,
		// arrowSize: 14
	// });	var titleArr = [];	$('.content').append('<div id="links" class="hidden" style="position:absolute; left:0;top:0"></div>');	$(".text-wrapper table a").each( function() {		var title = $(this).attr('title');		var href = $(this).attr('href');		var duplicate = false;		for (var i = 0; i <= titleArr.length; i++) {			if (title == titleArr[i]) {				duplicate = true;			}		}		if (!duplicate) {			titleArr.push(title);			$('#links').append('<a href="' + href + '" title="' + title + '" rel="lightbox">' + title + '</a>');		}	});	$('#links a').colorbox({		current: ""	});	$(".text-wrapper table a").not('.static-link').click( function() {		var _title = $(this).attr('title');		$('#links a[title=' + $(this).attr('title') + ']').trigger('click');		return false;	});});
