// ==UserScript==
// @name independent.co.uk - Missing content fix
// @author Lee Harvey 
// @namespace http://my.opera.com/Lee_Harvey/
// @description  Fixes invisible content problem on
//			news.independent.co.uk This script is
//			deprecated since the site has now fixed the
//			problem.
// @ujs:category site: fixes
// @ujs:published 2005-08-24 20:51
// @ujs:modified 2006-01-27 15:02
// @ujs:documentation http://userjs.org/scripts/site/fixes/independent-co-uk-content-fix 
// @ujs:download http://userjs.org/scripts/download/site/fixes/independent-co-uk-content-fix.js
// ==/UserScript==


/* 
 * This script is granted to the Public Domain
 */

if (document.domain.match(/^(news\.)?independent\.co\.uk$/)) {
	document.addEventListener("load",
		function(e) {
			var bodyCopy = document.getElementById("bodyCopyContent");
			if (bodyCopy) bodyCopy.style.display = "block";
		},
		false);
}
