// ==UserScript==
// @name           FTD Fix
// @namespace      http://www.python-industries.com/userscripts/
// @description    FTD Fix
// @include        https://*.usbank.com/*
// ==/UserScript==

(function() {

// find all of the text nodes and replace choice ones
var textnodes = document.evaluate(
	"//text()",
	document,
	null,
	XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
	null
);

for (var i = 0; i < textnodes.snapshotLength; i++ ) {
	var node = textnodes.snapshotItem(i);
	var text = node.data;
	if (text.indexOf('FTD') != -1) {
		node.data = text.replace('FTD', 'WEBHOST');
	}
}

})();
