// ==UserScript==
// @name        Highlights Hider
// @author      Mark Shields
// @namespace	http://markshields.com/
// @description This script will hide the highlights section on Facebook
// @include       http://*.facebook.com/*
// ==/UserScript==

// first let's look for all the DIVs (aka sections) on the page
myDivs = document.getElementsByTagName('DIV');

// next we'll loop through all of them to find one classified as UIHotStream
// which apparently is what Highlights is really called
for (counter=0; counter < myDivs.length; counter++) {
	if (myDivs[counter].className == 'UIHotStream UIStream') {

                // we found a match so we replace all of the HTML with this:
 		myDivs[counter].innerHTML = 'Hidden by Mark Shields - Super Genius';

	}
}
