﻿$(document).ready(function() {
    $(".thover tr:gt(0)").mouseover(function() {
        $(this).addClass('thoveron');
    });
    $(".thover tr:gt(0)").mouseout(function() {
        $(this).removeClass('thoveron');
    });
    $(".bover").mouseover(function() {
        $(this).addClass('boveron');
    });
    $(".bover").mouseout(function() {
        $(this).removeClass('boveron');
    });

    hideHiddenRows();
});

function hideHiddenRows() {
    $("[id^='hiddenrow']").hide();
}

function showHiddenRow(name, num) {
    $("[id^='" + name + "" + num + "']").toggle();
}

