<!--    jQuery Page Load Actions   -->

$(document).ready(function() {

<!-- Provide any-column sorting for data tables -->
	$('#sort').tablesorter({widgets: ['zebra', 'columnHighlight']});

<!-- Table Searcher -->
    if($("#tableSearch").length) {
        $.getScript("jquery.quicksearch.js", function() {
            $('table#sort tbody tr').quicksearch({
                position: 'append',
                attached: '#tableSearch',
                labelText: '',
                inputText: 'Refine search',
                delay: 1000
            });
        });
    }

});