$(document).ready(function(){
    $('#tablebg').css('height', $(window).height() + 'px');
    $.ajax({
                type:        'GET',
                url:         'news.html',
                dataType:    'html',
                timeout:     20000,
                cache:       false,
                success:     function(d,s){
                                 $('#contenttray').html(d);
                                 $('.scroll-pane').jScrollPane({
                                     verticalDragMinHeight: 40,
                                     verticalDragMaxHeight: 80,
                                     horizontalDragMinWidth: 40,
                                     horizontalDragMaxWidth: 80
                                 });
                             },
                error:       function(o,s,e){
                                 $('#contenttray').html();
                             }
    });
    $.ajax({
                type:        'GET',
                url:         'next.html',
                dataType:    'html',
                timeout:     20000,
                cache:       false,
                success:     function(d,s){
                                 $('#nextshow').html(d);
                             },
                error:       function(o,s,e){
                                 $('#nextshow').html();
                             }
    });
    $(function() {
                 $('.scroll-pane').jScrollPane({
                         verticalDragMinHeight: 40,
                         verticalDragMaxHeight: 80,
                         horizontalDragMinWidth: 40,
                         horizontalDragMaxWidth: 80
                 });
    });
});
