/*
Geocaching Log-on Enhancement - v1.0 2005-06-26
(c) 2005, Prime Suspect Software

Greasemonkey user script: see http://greasemonkey.mozdev.org

Compatible with Greasemonkey 0.6.4.

Changes the default value of the "Remember Me" checkbox to checked.

*/

// ==UserScript==

// @name             GC Log-on
// @description      (v1.0) Log-On - Auto-checks the Remember Me box
// @namespace        http://locusprime.net/gms/
// @include         	http://www.geocaching.com/login/default.aspx*

// ==/UserScript==

(function() {

	//  Get Cookie ID element.
	e_cookie = document.getElementById('cookie');
	//  Set value to checked.
	if (e_cookie != null) {
		e_cookie.checked = true;
	}

})();