// ==UserScript==
// @name           DS Crap clear
// @description	   Removes all the crap that DS have put into the new layout
// @namespace      rhshack
// @include        http://forums.digitalspy.co.uk/*
// ==/UserScript==


(function() {
var style = document.createElement( "style" ); 
style.appendChild(document.createTextNode("#footer, #searchbar, #rhs, #mainnav, #topunit, #popular_searches { display:none !important; } #lhs, #lhs .contents { width: 100% !important; }[/"));
document.getElementsByTagName( "body" ).item(0).appendChild( style );
})();

