// ==UserScript==
// @name MySpace Comments Remover
// @namespace http://www.tyworks.net
// @description Removes the comments box from users' profiles.
// @include http://*.myspace.com/*
// ==/UserScript==
(function() {
var allTables = document.getElementsByTagName('table');
for(var i=0; i<allTables.length; i++){
if(allTables[i].innerHTML.indexOf('Friends Comments')<400 && allTables[i].innerHTML.indexOf('Friends Comments')>0){
allTables[i].style.display="none";
}
}
})();
