// ==UserScript==
// @name          Greasemonkeyed.com to UserScripts.org
// @namespace     http://mozilla.wikicities.com/
// @include       http://greasemonkeyed.com/*
// @include       http://www.greasemonkeyed.com/*
// @include       http://userscript.org/*
// @include       http://www.userscript.org/*
// @description	  Relocation
// ==/UserScript==

(function() {
  var domain = location.hostname;
  location.href = location.href.replace(domain, 'userscripts.org');
})();

