scr_meta=<><![CDATA[
// ==UserScript==
// @name           comments-hider
// @namespace      comments-hider
// @description    Hides comments on web pages so you're not distracted by the remarks of others
// @version        0.1
// @include        http://www.hln.be/*
// @include        http://hln.be/*
// @include        http://www.gva.be/*
// @include        http://gva.be/*
// @include        http://www.hbvl.be/*
// @include        http://nieuwsblad.typepad.com/*
// ==/UserScript==
]]></>;

// Add jQuery
var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);
function GM_wait() {
	if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
	else { $ = unsafeWindow.jQuery; letsJQuery(); }
}
GM_wait();

// All your GM code must be inside this function
function letsJQuery() {
	var mapping = {
		'hln.be' : '#reactionDiv',
		'gva.be' : '#comments',
		'hbvl.be' : '#comments',
		'nieuwsblad.typepad.com' : 'div.comments-content'
	};

	var host = document.location.hostname;
	host = host.replace(/www./i,'');
	var commentPath = mapping[host];

	function insertAfter(newNode, node) {
	  return node.parentNode.insertBefore(newNode, node.nextSibling);
	}

	if (commentPath != null) {
		var comments = $(commentPath);
		if (comments != null) {
			comments.hide();
			comments.after('<div style="color:red">Comments hidden by Greasemonkey</div>');
			/*comments.addEvent('click',function(){
				$(commentPath).show();
				this.parentNode.hide();
			});*/
		}
	}
}