// ==UserScript==
// @name MorrisAtWhere? 
// @bad
// @include http://*.shacknews.com/laryn.x?*
// @include http://shacknews.com/laryn.x?*
// @include http://*.shacknews.com/frame_laryn.x?*
// @include http://shacknews.com/frame_laryn.x?*
// @include http://*.shacknews.com/profile.x?*
// @include http://shacknews.com/profile.x?*
// ==/UserScript==
/*

===============================================================================
Author: Digitalburro, then Fletch_, then ThomW

Thanks:  ThomW, I tried to understand GreaseMonkey by disecting his scripts
Edit: ThomW is very smart
Edit: Damn straight!
===============================================================================

*/

(function() {

	var allLinks, thisLink, replacement;
	allLinks = document.evaluate("//a[@href='/profile/MorrisatCNN']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);

	for (var i = 0; i < allLinks.snapshotLength; i++) {
	    thisLink = allLinks.snapshotItem(i);
	    thisLink.innerHTML = '<span style="text-decoration: line-through">MorrisAtCNN</span> <span style="text-decoration: line-through">MorrisAtYahoo</span> <span style="text-decoration: line-through">MorrisFreelancingForCNBC</span> MorrisAtForbes';
	}
})();
