// ==UserScript==
// @name		Fot-o-grafiti no ads
// @namespace		http://www.rulac.net/userjs/fotografiti-no-ads/
// @description		remove ads
// @version		1.0
// @include		http://*.fot-o-grafiti.hr/*
// ==/UserScript==

document.addEventListener("DOMContentLoaded", function(){
		if (ad1 = document.getElementById("ad-blocking-makes-fella-sad")){
			ad1.setAttribute("style", "display:none");
		}
		divs	= document.getElementsByTagName("div");
		for (i = 0; i < divs.length; i++){
			if (divs[i].getAttribute("id") == "ads" || divs[i].getAttribute("id") == "banner"){
				//divs[i].setAttribute("style", "display:none;width:0px;");
				divs[i].innerHTML = "[Blocked Ads]";
			}
		}
//		alert(location.href);
}, false);