// --------------------------------------------------------------------
//
// ==UserScript==
// @name           43Things WorthIt!
// @namespace      http://lkbm.ecritters.biz/
// @description    Makes 'Worth doing!' the defaultly selected option on 43Things.
// @include        http://www.43things.com/things/view/*
// ==/UserScript==

(function ()
{
	document.getElementById('team_member_worth_it').lastChild.selected = 1;
})();

