/*
 * test greasemonkey script
 */

// ==UserScript==
// @name        TestScript
// @namespace   http://www.lafferty.ca/software/greasemonkey/
// @description Test script
// @include     http://www.lafferty.ca/*
// ==/UserScript==

(function() {
   document.title = 'honk';
})();

