$(function()
{
    
    /*$('a', 'div#pages').click(function()
    {
        var page = $(this).attr('id');
        var url = $.param({
            module:         'gallery', 
            service:        'photos', 
            page:           page, 
            category_url:   $('input[name=category_url]').val()
        });
        
        $.get
        (
            '?' + url, 
            function (response) 
            {
                document.location.hash = '#page=' + page;
                $('#ajax_content').empty().append(response);
            }
        );
        
        return false;
    });
    
    $(document).ajaxStart(function()
    {
        $('#ajax_content').slideUp('slow');
    });
    $(document).ajaxStop(function()
    {
        $('#ajax_content').slideDown('slow');
    });*/
    
});
