
function stats(w) {

}

$(document).ready (
    function() {
        
        $(".clickableTr").each(
            function() {
                $(this).click(function() { document.location.href="/statistik/" + $(this).attr('title'); });
                $(this).mouseover(function() { $(this).css('background-color','#bbb'); });
                $(this).mouseout(function() { $(this).css('background-color',''); });
                $(this).css('cursor', 'pointer');
            }
        );
        
    }
    
);

