Ok..so some kind fellow helped me with how to identify the first 4 rows and then apply css to them alone..
$("table").each(function() {
$("tr:gt(4)", this).addClass("hidden");
});
$("table").tablesorter();
now i need to modify the tablesorter that comes with an extension so that when ever the sort is performed that the class assignment is recalculated. so basically all the tr will have their classes removed and then recalculated based on the new sort.
I hope this makes sense