it has been soo long since i have written an entry,.. and it's crazy,...i'm a working girl now,....i have an amazing paycheck,... and most of all i have an amazing boyfriend,....it feels like soo much time has passed aND in reality not enough time has past....i feel like i've grown up soo much in the last couple of months,...i no longer attend church,...and yeah sometimes they may be for stupid reasons,...but i'm not completely gone,....YET!!! i do try to attend when i can just cuz i have a lot to do and not enought patience for the world,....
well i'm getting alot of distractions at work adn cant think straight so hopefully i'lll be able to get a more accurate update soon,...
//
// ?003 EasterEgg, http://www.xanga.com/easteregg
// Changes date text
// For use at Xanga only.
//
// Info at http://dorkette.net
//
function replaceWordsDates()
{
// ***add the Months or Days you wish to replace below
var oldWordsDates = new Array(
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
);
// *** add the replacing Months or Days below
var newWordsDates = new Array(
"Jumping Jan",
"Freaky Feb",
"Miraclous March",
"Awesome April",
"Moody May",
"Just relaxing in June",
"Jumping juniper it's July",
"Summer's over, it's August",
"Summer ended it's September",
"Over-rated October",
"Never-ending November",
"Dull December",
"Boring Monday",
"Save Me Tuesday",
"Wait For ME Wednesday",
"Tickle Me Thursday",
"Thank God it's Friday",
"Saturday to fun to end",
"arggg it's Sunday"
);
allDivData = document.getElementsByTagName('div');
var collections = new Array(allDivData);
for (var k = 0; k < collections.length; ++k )
{
for (var i = 0; i < collections[k].length; ++i )
{
if (collections[k][i].innerHTML.indexOf('DIV') == -1)
{
for ( var n = 0; n < oldWordsDates.length; ++n )
{
var indx = collections[k][i].innerHTML.indexOf(oldWordsDates[n])
while (indx != -1)
{
var replacement = '';
indx = collections[k][i].innerHTML.indexOf(oldWordsDates[n]);
replacement = collections[k][i].innerHTML.replace(oldWordsDates[n], newWordsDates[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;
}
}
}
}
}
}
replaceWordsDates();
(http://www.xanga.com/private/subs.aspx)
/*
Footer Remover - xanga.com/add_ons
*/
table.footer, table.footernav {display: none;};