$(".grid").ready(function(){
    $(".grid tbody tr.odd td, .grid tbody tr.even td").hover(function(){
        $(this).parent().children().css("background-color", "#FEDA79")
    }, function(){
        $(this).parent().children().css("background-color", "");
    });
    $(".grid tr td.count").click(function(){
        var anchor = $(this).parent().find("a.questionlink");
        if (anchor) {window.location=anchor[0].href}
    });
});

