// Snakenet Info Panels
// version 0.1
// 2007-11-04
// Copyright (c) 2007, Michael Jervis
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Bloglines Butler", and click Uninstall.
//
// --------------------------------------------------------------------
//
// WHAT IT DOES:
// --------------------------------------------------------------------
//
// ==UserScript==
// @name            Snakenet Info Panels
// @namespace       http://fuckingbrit.com/greasmonkey
// @description     Makes the profile panel on forum posts at snakenet visible.
// @include         http://*.snakenet*.com/heavymetallounge/4rum/topic.asp*
// ==/UserScript==

(function() {
		var i;
		// Seek and destroy the feedburner.com adverts
		var infoPanels = document.evaluate(
			"//tr[contains(@class,'postpanel')]",
			document,
			null,
			XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
			null);

        for (i = 0; i < infoPanels.snapshotLength; i++) {
            infoPanel = infoPanels.snapshotItem(i);
            infoPanel.style.display = ''
        }

})();