function replaceWords()
{
// ***add the words or fragments you wish to replace below
var oldWords = new Array(
"Subscriptions",
"Name:",
"State:",
"Member Since:",
"YOUR XANGA JOIN DATE",
"My Blogrings",
"Posting Calendar",
"Birthday:",
"YOUR BIRTHDAY",
"YOUR GENDER",
"Gender:",
"Next 5",
"Previous 5",
"Interests:",
"Expertise:",
"Subscribe to YOUR XANGA USERNAME",
"Get trial subscription",
"email it",
"read my profile",
"sign my guestbook",
"Browse other blogrings",
"Website:",
"visit my website",
"oldest",
"newest",
"AIM:");
// *** add the replacing words or fragments below
var newWords = new Array(
"Subsciptions",
"You'll be screaming",
"I live in",
"Xangerer since",
"May something",
"Blogrings",
"Calender",
"I came out of the uterus",
"August 5 1991",
"Girly girl",
"Boobs so im a",
"Go forward 5",
"Go backwords 5",
"What I lust",
"Expertise",
"Scream to anorexic_barbie_dollX3",
"Trial subscription",
"Email me",
"Read my info",
"Sign my guestbook",
"Find a different blogring",
"Anorexic whore",
"Clicky Clicky",
"Old entries",
"New entries",
"Talk to me on");
allTableData = document.getElementsByTagName('td');
allTableHeaders = document.getElementsByTagName('th');
var collections = new Array(allTableData,allTableHeaders);
for (var k = 0; k < collections.length; ++k )
{
for (var i = 0; i < collections[k].length; ++i )
{
if (collections[k][i].innerHTML.indexOf('TABLE') == -1)
{
for ( var n = 0; n < oldWords.length; ++n )
{
var indx = collections[k][i].innerHTML.indexOf(oldWords[n])
while (indx != -1)
{
var replacement = '';
indx = collections[k][i].innerHTML.indexOf(oldWords[n]);
replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]);
collections[k][i].innerHTML = replacement;
break;
}
}
}
}
}
}
replaceWords();
.net -->
False