﻿/* page: a/news/default.aspx */

$(document).ready(function(){
  initPage();
});

function initPage()
{
  advTable();
} // initPage()

function advTable()
{
  $("table.newsResults").addClass("newshResultsAdv");
  $("table.newsResults tbody tr").hover(
    function(){ $(this).addClass("hover"); },
    function(){ $(this).removeClass("hover"); }
  );
  $("table.newsResults tbody tr").live("click", function(){
    $(this).removeClass("hover");
    location.href = $(this).find("td a.news").attr("href");
  });
} // advTable()
