﻿/// <reference path="jquery-1.3.2.min.js" />
/// <reference path="jquery.tablesorter.js" />

$(document).ready(function ()
{
    if ($.browser.msie)
    { //Check to see if we are using IE, otherwise don't use table sorter as it has an issue
        $("#Articles").tablesorter()

        $("#Articles").bind("sortStart", function ()
        {
            $("tr").removeClass();
            $("#SortingStatus").fadeIn(150);
        }).bind("sortEnd",
        function ()
        {
            $("tr:even").addClass('odd');
            $("#SortingStatus").fadeOut(150);
        });

    }
}
);
