// Version 0.1
// Copyright (c) 2010, John Hobbs
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// ==UserScript==
// @name          Territorial Seed No Right Click
// @namespace     http://www.velvetcache.org/
// @description   Disable the disable right click script on Territorial Seed
// @include       http://www.territorialseed.com/*
// ==/UserScript==

window.addEventListener (
	'load',
	function () { setTimeout( "document.oncontextmenu = null;", 150 ); },
	true
);

