// ==UserScript==
// @name          Experts-exchange annoyance remover
// @namespace     http://www.experts-exchange.com
// @include       http://www.experts-exchange.com/*
// @description   Hide annoying stuf on pages
// ==/UserScript==
//
// Author: Rob Vonk
//  


function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('.boxTitle, .sectionHeader, .item, form .fullWidth, .column, .searchBar, .taMenu, .logoLeft, .logoRight, .hackerFloater, .memberLinks, .bgLogoRight, .logoRightFade, .breadCrumb  {  display: none; }');

