// ==UserScript==
// @name          Hattrick 2009 (No ads)
// @namespace     http://userstyles.org
// @description	  - No ads
// @author        NetDancer
// @homepage      http://userstyles.org/styles/12793
// @include       http://hattrick.org/*
// @include       https://hattrick.org/*
// @include       http://*.hattrick.org/*
// @include       https://*.hattrick.org/*
// ==/UserScript==
(function() {
var css = "/******************************/ /* Hattrick 2009 */ /* by NetDancer */ /* netdancer.es */ /******************************/ @namespace url(http://www.w3.org/1999/xhtml); div[class*=\"ad_\"]{display:none!important} #hattrickNoSupporter{width:1007px!important} div[id*=\"_ucPlayerFace_pnlAvatar\"]{float:right!important}";
if (typeof GM_addStyle != "undefined") {
	GM_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); 
	}
}
})();

