// ==UserScript==
// @name Remove Shoutbox in Friendster
// @autor Chaoz
// ==/UserScript==

(function () {
	//alert("test");
	var parent = document.getElementById("content_controlpanel_1_1");
	var shout = document.getElementById("cpShoutoutBox");
	//alert ( document.getElementById("cpShoutoutBox").innerHTML );
	document.getElementById("cpShoutoutBox").innerHTML = "<div class=\"somsg\">\"<span style=\"padding: 0px; margin: 0px;\"><style>div{display:inline}</style></span>\"</div>";
	//alert ( document.getElementById("cpShoutoutBox").innerHTML );

})();
