// Facebook Chering is Caring 
// version 0.1
// 2008-02-26
// Copyright (c) 2008, Jeffrey P. McManus
// Platform Associates
// http://platformassociates.com/
// I was born in the wagon of a travelin' show...
// 
// −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− 
// 
// This is a Greasemonkey user script. 
// 
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/ 
// Then restart Firefox and revisit this script. 
// Under Tools, there will be a new menu item to "Install User Script". 
// Accept the default configuration and install. 
// 
// To uninstall, go to Tools/Manage User Scripts, 
// select "Facebook Chering is Caring", and click Uninstall. 
// 
// −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− 
// 
// ==UserScript== 
// @name          Facebook Chering is Caring
// @namespace     http://platformassociates.com/
// @description   Replaces "Share" with "Cher" on Facebook. If you swing that way. 
// @include       http://facebook.com/*
// @include       http://*.facebook.com/* 
// ==/UserScript== 

var shareLinks, thisLink;
shareLinks = document.evaluate("//a[@class='share']", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

for (var i = 0; i < shareLinks.snapshotLength; i++) {
	thisLink = shareLinks.snapshotItem(i);
	thisLink.innerHTML = "Cher";
}
