// ==UserScript==
// @name           ExpertsExchangeFilter
// @namespace      All
// @description    Remove Experts Exchange Stuff
// @include        http://experts-exchange.com/*
// @include        http://www.experts-exchange.com/*
// ==/UserScript==
a=document.getElementsByTagName('div')
for(i=0;i<a.length;i++) {
  if (a[i].className=='infoBody') {
    a[i].removeChild(a[i].childNodes[1])
  }
}
function rot13(s)
{
var r='';
for (var i=0, len=s.length; i<len;i++)
{
c = s.charCodeAt(i);

if ((c >= 65 && c <= 77) || (c >= 97 && c <= 109))
{
c = s.charCodeAt(i) + 13;
}
else if ((c >= 78 && c <= 90) || (c >= 110 && c <= 122))
{
c = s.charCodeAt(i) - 13;
}
r += String.fromCharCode(c);
}
return r;
}

a=document.getElementsByTagName('div')
for(i=0;i<a.length;i++)
{
  if (a[i].className == 'answerBody quoted')
  {
    a[i].innerHTML = rot13(a[i].innerHTML.replace(/<br>/,''))
  }
}
