$(document).ready(function () {
  $(".feature-td").hover(
    function () {
      $(this).css("background-color", "#F9F9F9");
      $(this).find("a").css("text-decoration", "underline");
    }, 
    function () {
      $(this).css("background-color", "");
      $(this).find("a").css("text-decoration", "none");
    }
  );  
  $(".feature-td").click(function(){
     window.location = $(this).find("a")[0].href;
  });  
  $("#intro").hover(
    function () {
      $(this).css("cursor", "pointer");
      $(this).find("a").css("text-decoration", "underline");
    }
  ).click(function(){
     window.location = $(this).find("a")[0].href;
  });
      
});
