// ==UserScript==
// @name          www.tvtv.de - remove header and footer
// @namespace     http://userstyles.org / http://userstyles.org/styles/23995
// @description	  Remove header and footer from tvtv.de
// @author        b0zen[www.akm24.de] and The Riddle 1
// @homepage      http://www.akm24.de/berlin/web-it/895-greasemonkey-tvtvde-script
// @include       http://www.tvtv.de/*
// @include       https://www.tvtv.de/*
// @include       http://*.www.tvtv.de/*
// @include       https://*.www.tvtv.de/*
// ==/UserScript==
(function() {
var css = "#main_left {\ntop: 0px !important;\nbottom: 0px !important;\n}\n#main_right {\ntop: 0px !important;\nbottom: 0px !important;\n}\n#footer {\ndisplay: none !important;\n}\n#header {\ndisplay: none !important;\n}\n";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}
})();

