// ==UserScript==
// @name          wizard forum width
// @namespace     http://gdorn.nudio.net/greasemonkey
// @include       http://boards*.wizards.com/*
// @description	  Remove stupid 100% width td on right side
// ==/UserScript==
// Notes:
//   * is a wildcard character

//alert('hi');
(function() {


//figure out where to put the "print" button
	tds = document.getElementsByTagName("td");
	//var foundtd;

	for (var i = 0; i<tds.length; i++)
	{

		if (tds[i].width == "100%" && tds[i].innerHTML == "&nbsp;")
		{
//			alert ("Found TD");
			tds[i].width = "0px";
			tds[i].innerHTML = "";
			//break;
		}
	}

}


());


