1var windowsize = $(window).width();
2
3$(window).resize(function() {
4 var windowsize = $(window).width();
5});
6
7if (windowsize > 440) {
8 //if the window is greater than 440px wide then turn on jScrollPane..
9 $('#pane1').jScrollPane({
10 scrollbarWidth:15,
11 scrollbarMargin:52
12 });
13}
14