$(document).ready(function() {

	if ( $(".scroll-pane").length > 0 ) {
		$('.scroll-pane').jScrollPane({scrollbarWidth:8, scrollbarMargin:20, arrowSize:8, showArrows:true});
	}
	
	$("#content").hide();

});


function show_content(){
	
	$("#content").fadeIn();
}