﻿/// <reference path="jQuery-vsdoc.js" />

$(function() {
    $('tr').click(function() {
        var link = $(this).children('td').children('a').attr('href');
        if (link != null)
            document.location = link;
    });
});