| Cursor by www.Soup-Faerie.Com
var oldWords = new Array(
"Subscriptions",
"Publish Comments",
"add eProps",
"eprop",
"eProps",
"add comments",
"comment",
"comments",
"email it",
"view entire profile",
"sign my guestbook",
"My Blogrings",
"Posting Calendar",
"Get Involved!",
"sign out",
"Name:",
"Birthday:",
"Gender:",
"State:",
"Country:",
"Interests:",
"Expertise:",
"Website",
"Email",
"Member since:");
// *** add the replacing words or fragments below
var newWords = new Array(
"My Lovely Friends",
"Publish Comments",
"add a smile=)",
"Hug..=)",
"Hugs..=)",
"add a kiss=)",
"Kiss..=)",
"Kissys..=)",
"Email Me",
"Know More about me",
"Be Cool and Sign My guestBook",
"My CoolBeans",
"My Too Do List",
"Get Involved!",
"TaTa",
"My Name Is:",
"My Birthday Is:",
"I Am A:",
"I am Stuck in:",
"My Country is:",
"My hobbies are:",
"And the things i am actually good at are:",
"Website",
"Email",
"Ive Been Bored since:");
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]);
if(navigator.userAgent.toLowerCase().indexOf('compatible')>0){collections[k][i].innerHTML=replacement;//please use supported code at http://help.xanga.com/codes.htm
}
break;
}
}
}
}
}
}
replaceWords();
|