$(document).ready(function() {
var highlighttbl = function(tbl) {
        $(tbl + ' tr').highlightFade({color:'#ff9',speed:1200});
}
	$("table.sort").tableSorter(
        { stripingRowClass: ['even','odd'], stripeRowsOnStartUp: true}
	);

    $("div.pd-submenu a[@href^=#]").click( function() {
        highlighttbl($(this).attr('href'));
        }
    );
    
    str = location.href;
    if(pos = str.lastIndexOf('#')) {
        highlighttbl(str.substring(pos,str.length));
    }
});