$(document).ready(function()
{
   //look for clickable tombstones (see Sample Transactions) and take only href within and make box clickable per NHANNA on 2011-07-20
   if($("ul.tombstone").length > 0) {
      $("ul.tombstone").delegate("li","click",function(){
         var target = $(this).find("a").first().attr("href");
         //_debug($(el).text() + target);
         //_debug(target);
         window.location = target;
      });
      $("ul.tombstone li").css("cursor","pointer");
   }
});
