| // You can adjust the existing arrays your
// Look and Feel page.
//
// You're free to use this script as long as this comment remains intact,
// and as long you won't use it to cripple
function replaceWords()
{
// ***add the words or fragments you wish to replace below
var oldWords = new Array(
"Sites I Read",
"Publish Comments",
"eprops",
"eProps",
"comments",
"Comments",
"view entire profile",
"sign my guestbook",
"My Blogrings",
"Browse other blogrings...",
"email it",
"sign out",
"Get full email subscription!",
"Add inevitable_lonliness to my list",
"Click here to tell all your friends about your site!",
"events",
"Create a site",
"Recommend to friend",
"Suggest a link",
"Subscribe to inevitable_lonliness",
"Get trial subscription",
"Get Involved!",
"Build Traffic!",
"Posting Calendar",
"Click Here",
"Hobbies:",
"Real Name:",
"Email:",
"Member Since:",
"Birthday:",
"Website:",
"lexbemissinyou@aol.com",
"Help",
"Add Link",
"Back to My Xanga Site",
"sign in",
"Back to inevitable_lonliness's Xanga Site!",
"Give MORE nutter butterz! or Post a Comment",
"Read Comments",
"Post a Comment",
"Expertise:");
// *** add the replacing words or fragments below
var newWords = new Array(
"Sites I Read",
"Publish Comments",
"eprops",
"eProps",
"and yer point is?",
"say whah?!",
"view entire profile",
"sign this!",
"i joined these!",
"explore!",
"email it",
"leave",
"Get full email subscription!",
"add me!",
"Click here to tell all your friends about your site!",
"whats going on",
"cheek",
"my",
"kiss",
"Subscribe to inevitable_lonliness",
"Get trial subscription",
"Get Involved!",
"Build Traffic!",
"dates",
"Click Here",
"_+Occupied By+_",
"_+Identity+_",
"Email:",
"Member Since:",
"Birthday:",
"Website:",
"lexbemissinyou@aol.com",
"Help",
"Add Link",
"go back!",
"enter",
"Back to inevitable_lonliness's Xanga Site!",
"what were you saying?",
"curious?",
"tell me a secret",
"Expertise:");
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();
|