// ==UserScript==
// @name           2+2fix
// @namespace      http://www.dnickolas.com/2p2
// @description    Does little things to improve interaction with 2+2.
// @include        *forums.twoplustwo*
// ==/UserScript==

// I'm making some serious changes to this because of the new form software
// kill top table

var toptable = document.getElementsByTagName("TABLE")[0];
toptable.parentNode.removeChild(toptable);

//kill entire right table cell to stop wasting screen space

var tds = document.getElementsByTagName("TD");
for(var x=0; x<tds.length; x=x+1)
{
	var currenttd = tds[x];
	if(currenttd.width==120)
	{
		currenttd.parentNode.removeChild(currenttd);
	}
}

