//
// ==UserScript==
// @name           BBC Debrand
// @namespace      http://www.commuterjoy.co.uk/greasemonkey
// @description    debrands sites from bbc.co.uk by removing the global navigation elements
// @include        http://www.bbc.co.uk/*
// @include        http://news.bbc.co.uk/*
// ==/UserScript==
//
// v0.1 - April 2005 - Matt Chadburn


(function() {

  // check page is not stand-alone
  if ( document.getElementById('bbcpageSearchbox') )  
 {
 
  var table_cells = document.getElementsByTagName('table');

  // BBC Toolbar held in the first table of each page
  table_cells[0].style.visibility = 'hidden';

  // Privacy, T&C's held in the last table on the page 
  table_cells[table_cells.length - 1].style.display = 'none';  

  // hide, to retain page structure. display:none shifts banner to the left
  document.styleSheets[0].insertRule('.bbcpageToplefttd { visibility : hidden; }', 0);

  // remove Help, Contact Us etc... services
  document.styleSheets[0].insertRule('.bbcpageServices { display : none; }', 0);

  // remove BBC Homepage anchor in the left-navigation
  document.styleSheets[0].insertRule('.bbcpageCrumb { display : none; }', 0); 

 }
    
})();

