// C2 Wiki Code Word
// version 0.1
// 23 May 2005
// Copyright (c) 2005, Adam Vandenberg
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
//
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "C2 Wiki Code Word", and click Uninstall.
//
// ==UserScript==
// @name		C2 Wiki Code Word
// @namespace	http://adamv.com/greases/
// @description 	Auto-fill the C2 Wiki code word
// @include	http://c2.com/cgi/wiki?edit*
// ==/UserScript==

(function(){
var box = document.forms[0].elements["code"]
box.value = "567";
})();
