$(document).ready(function() {
  var keyword = $.qtm.keywordFromUrl(document.referrer);
  if (keyword) {
    var link_panel = $("<div/>").addClass("qtm-link")
      .append($("<p/>").text("So you're researching ")
        .append($("<span/>").text(unescape(keyword.replace(/\+/g, " "))))
        .append(", eh? Why not ")
        .append($.qtm.link("webventurer", "landscaping-ideas-online", "tell us what you really need"))
        .append("?"))
      .hide();
    $("table#landscaping-header").before(link_panel);
    link_panel.slideDown("slow");
  }
});
