// ==UserScript==
// @name            Grey Bit Remover
// @description     Makes the grey bars on the side of the page go away.
// @author          Scott
// @version         0.1 (5 August 2006)
// @include         http://rumandmonkey.com/*
// ==/UserScript==

document.body.setAttribute("style",  "background-color: white; margin:0;");
document.getElementsByTagName("div")[0].setAttribute("style",  "margin: 0; border: 0;");

