$(document).ready(function(){
    function updateUI(){
        $('#page-content a[title], #page-content img[title], #page-content div[title]').tooltip({
            delay: 100,
            fade: false,
            showURL: false
        });
        $("#page-content select").combobox({
            selected: function(event, ui) {
                $('#loading .content').html('Сортировка...');
                $('#loading').show('fade', 'fast');

                $.ajax({
                    type: 'get',
                    url: ui.item.value + '&mode=ajax',
                    dataType: 'html',
                    success: function (html) {
                        $('#page-content').replaceWith(html);
                         updateUI()
                    },

                    complete: function () {
                        $('#loading').hide('fade', 'fast');
                    }
                });
            }
        });
    }

    $('#pager a').live('click', function(event){
        event.preventDefault();

        $('#loading .content').html('Обновление страницы...');
        $('#loading').show('fade', 'fast');

        $.ajax({
            type: 'get',
            url: $(this).attr('href') + '&mode=ajax',
            dataType: 'html',
            success: function (html) {
                $('#page-content').replaceWith(html);
                updateUI();
            },

            complete: function () {
                $('#loading').hide('fade', 'fast');
              }
        });
    });
    
    updateUI();
});
