/* INIT THE SCROLL PANES + STRETCH DIV --------------------------------------- */

/*
$(function(){
	// this initialises the demo scollpanes on the page.
	$('#pane1').jScrollPane({showArrows:false, scrollbarWidth:6, scrollbarMargin:10});
});
*/

jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
	$('#pane1').jScrollPane({showArrows:false, scrollbarWidth:6, scrollbarMargin:10});
});
