$(function () {
// Sort table - page module
    $("table.shop").tablesorter({
        headers: {
            0: {
                sorter: false
            },
            4: {
                sorter: false
            }
        },
        // Disabled on the 1st and 6th columns
        widgets: ['zebra']
    });
    
    $("table.shop").tablesorterPager({container: $("#pagination")});

    $('table tr th.header').css('cursor', 'pointer');
});
