/*$(document).ready( function() {
	alert('fire');
	$('div#custom_scroll').jScrollPane({
		'scrollbarWidth': 9,
		'showArrows': true
	});
});*/

window.onload = drawScroll;

function drawScroll()
{
	$('div#custom_scroll').jScrollPane({
		'scrollbarWidth': 9,
		'showArrows': true
	});
}

