﻿/// <reference path="jquery-vsdoc.js"/>

//Create a horizontally striped table, with hover effects to indicate the current line
$(document).ready(function() {
    $("table.TableStripedLayout tbody tr:nth-child(odd)").addClass("TableRow");
    $("table.TableStripedLayout tbody tr:nth-child(even)").addClass("TableRowAlternating");
    $("table.TableStripedLayout tbody tr").mouseover(function() { $(this).addClass("TableRowHover"); });
    $("table.TableStripedLayout tbody tr").mouseout(function() { $(this).removeClass("TableRowHover"); });
});