//Konstantins Buravcovs 2009.10
//This code is using jQuery, to sort a catalog table here:
//http://www.e-ls.lv/index.php?option=com_mtree&Itemid=60&lang=ru
//Issue #110

$(document).ready
(
    function()
    {
        $("#mtree_list_table_110").tablesorter({ 
            // sort on the first column, order asc 
            sortList: [[0,0]]
            //textExtraction: function(node) { 
            // extract data from markup and return it  
            //return node.childNodes[0].innerHTML; 
            //} 
        }); 
        
        

    }
);

