﻿
$(document).ready
(
    function() 
    {
        
        /// Hover event for the MeetingList table 
        $(".meetingList tr").hover
         (
            function()
            {
                $(this).children("td").addClass("tabOver");
            },
            function()
            {
                $(this).children("td").removeClass("tabOver");
            }
         );
        
        /// This
        $(".meetingList tr").click
         (
            function()
            {
				if ($(this).children("td.listRight").children("a").attr("href") != undefined)
				{
					window.location = $(this).children("td.listRight").children("a").attr("href");
                }
                else
                {
					return false;
				}
            }
         );
        
    }
);