// ==UserScript==
// @name           Shack: Yes I've Read The Fucking Rules
// @namespace      http://lmnopc.com/greasemonkey/
// @description    Gets rid of the Read the Rules link under the post box for morons like Phil.
// @include        http://www.shacknews.com/laryn.x*
// @include        http://shacknews.com/laryn.x*
// ==/UserScript==

var readem = GM_getValue('readem', false);

if (readem == false)
{
	if (confirm('Have you read the rules?') == false)
	{
		alert('Go read the rules'); 
		return; 
	}
	if (confirm('Are you sure you read the rules?') == false)
	{
		alert('Liar.  Go read the rules.'); 
		return; 
	}
	if (confirm('You\'re absolutely positive you read the rules?') == false)
	{
		alert('You suck at this.  When someone asks if you read the rules, you say YES.'); 
		return; 
	}  
	
	GM_setValue('readem', true);
}

GM_addStyle('p.rules { display: none; }');

