$(document).ready(function() {
  var oTD = $("table.ContentsItem tr td");
  oTD.click(function() {
    window.location.href = $("a", this).attr("href");
    return false;
  });
  oTD.hover(
    function() {
      $(this).addClass("td_ContentsItem_hover");
      window.status = $("a", this).attr("href");
    },
    function() {
      $(this).removeClass("td_ContentsItem_hover");
      window.status = "";
    }
  );
});

