/* this combines the PicNet Table Filter and TableSorter scripts together - BUG - alternating zebra rows break */
$(document).ready(function() {
	var options = {
		additionalFilterTriggers: [$('#quickfind')],
		clearFiltersControls: [$('#cleanfilters')]            
	};
	$('#filtersorttable').tableFilter(options);
        $("#filtersorttable").tablesorter(); 
});

/* this combines the PicNet Table Filter and TableSorter scripts together - BUG - alternating zebra rows break */
 $(document).ready(function() {
        $("#sortnow").tablesorter(); 
        
});

/* this combines the PicNet Table Filter and TableSorter scripts together - BUG - alternating zebra rows break */
$(document).ready(function() {
	var options = {
		additionalFilterTriggers: [$('#quickfind')]
	};
	$('#myfilter').tableFilter(options);
});

