﻿
$(document).ready(function() {
  debug('customScroll DOM ready');
  //if (jQuery.support.cssFloat) {
   
    $(".scroll-pane").each(function(i){
       try{ 
         $(this).jScrollPane();
       }
       catch(e)
       {
         debug(i + ' : ' + e);
       }  
		});
  //}
}); 