// ==UserScript==
// @name           irc-galleria antiprotect
// @namespace      http://tefra.fi/software/greasemonkey/
// @description    Removes the javascript-protection from irc-gallery images
// @include        http://irc-galleria.net/*
// @include        http://my-gallery.ru/*
// @include        http://minugalerii.ee/*
// @include        http://ircgalerie.net/*
// @include        http://manogalerija.lt/*
// ==/UserScript==

(function() {
// run after the page has fully loaded
window.addEventListener("load", removeProtect(), false);
					
// remove the notes-frame
function removeProtect() {
	var notes = document.getElementById("notes");
	if(notes) {
		notes.parentNode.removeChild(notes);
	}
}

})();
