function initScroll() {
	var height = $(window).height() - 2*parseInt($('#global').css('padding-top')) - $('#adminTop').outerHeight() - $('#top').outerHeight();
	
	$('#main, .jScrollPaneContainer').height(height);
	
	$('#main').jScrollPane({
		scrollbarWidth: 16,
		scrollbarMargin: 16,
		showArrows: true,
		maintainPosition: false
	}).css('visibility', 'visible');
}

$(function() {
	$(window).load(initScroll);
	$(window).resize(initScroll);
});