// ==UserScript==
// @name           Support Summary in Title
// @namespace      http://afunamatata.com/greasemonkey/
// @description    Append the request summary to the window title, so we can seach for it via the awesomebar
// @include        http://www.dreamwidth.org/support/see_request*
// @include        http://www.livejournal.com/support/see_request.bml?id=*
// ==/UserScript==

var wrapper =  document.getElementById("content") || document;
var subject = document.evaluate(".//td/span/b",wrapper, null,XPathResult.FIRST_ORDERED_NODE_TYPE,null ).singleNodeValue;
document.title += " - " + subject.firstChild.nodeValue;

