$(document).ready(doLoad());
function doLoad()
{
    var refreshId = setInterval(function() {
        var $tabs = $("#tabs").tabs();
        var $selected = $tabs.tabs('option', 'selected');
        $('#centerbar').load(location.href, {
            block: 'centerbar'
        }, function() {
            $("#tabs").tabs({
                cookie: {
                    expires: 30
                },
                selected: $selected
            });
        });

    }, 100000);

}


  


