$('document').ready(function() {
  $('#allNews td').click(function() {
    var href = $(this).children("h3").children("a").attr("href");
    document.location = href;
  });
});
