|
| hey guys! i get my phone tomorrow!!!! ya hooo!!! mmm i dont know wat kind yet..im korean so probably a samsung but i donno!! =D =D =D | | |
| hmm.... today is the 22nd... i think... and guess wat??? something important is coming up for me =) if you know wat it is... thank you for noticing ! for all the people who dont know... just ask me =)!! tap testing sucks man... so boring ahhh blah blah, half day tomorrow, VESPERS ON FRIDAY!!!! FRESHMAN OUR VESPERS IS ON FRIDAY! be there, or be dead
^^^^^ thats threating huh? well it better be.. if your not there that gay! well i'll catch you guys the next year i come on this cauz i never doo =) hehe see ya! guess who im asking to the banquet =O | | |
| this is for ya'll haters. in mah brothers xanga and mine....
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
| | |
| hi there...im at my cousin's house... doing nothing cauz my cousin is gay and he went somewhere...and im stuck with his gay brother...hahahaha jk chris... lalalala well hope you guys have fun...going wakeboarding in like 4 or 5 days!! woo hoo see ya! | | |
| whew...im tired... i went to vball for freakin like 6 hours....this church thing...we got 1st place...yay!!!! hehe then i went to cold stone... woohoo!! cool place... then to eat at home town....whew im ttttiredd...hehe =D....
err im writing in this thing again... haha any one reading this??? =D =D =D =D later | | |
|
|
//
// ©2003 EasterEgg, http://www.xanga.com/easteregg
//
// For use at Xanga only.
//
// This script replaces any given word or text fragment with
// whatever you want: new words and fragments, or even HTML!
//
// Actually it's pretty simple: add the words or fragments you
// wish to replace to the array "oldWords" (each word placed
// between double quotation marks, and separated by colons as you
// can see below) and add their replacements to the array "newWords",
// at the same position as the original words in "oldWords".
// The example is pretty self-explaining.
//
// The script is case sensitive, meaning that if you add "something"
// to "oldWords" array it will not recognize "SOMETHING", or "SoMetHInG".
//
// You can adjust the existing arrays in this code as you see fit,
// as long as both arrays keep the same size (same amount of words
// in both arrays), otherwise a script error will occur.
//
// Copy this entire code and paste in the webstats box at 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 the comments of your visitors;
// after all, no one likes his/her words getting twisted...
//
function replaceWords()
{
// ***add the words or fragments you wish to replace below
var oldWords = new Array(
"Sites I Read",
"Publish Comments",
"Real Name:",
"Occupation:",
"Birthday:",
"Location:",
"California",
"Gender:",
"Female",
"Website:",
"My Blogrings",
"Posting Calendar",
"Get Involved!",
"Stats",
"Member since:",
"6/1/2003",
"Expertise:",
"Hobbies:",
"Add LoNeLyxAzNxPnAi to my list",
"Get full email subscription!",
"Email:");
// *** add the replacing words or fragments below
var newWords = new Array(
"maH hOmiEz",
"taLk to meE",
"itz -",
"oCcupAtiOn",
"boRN",
"RePre-",
"9o9 aREa",
"seXx",
"guY",
"wEbb",
"riNgz",
"daTE",
" blahh.. ",
"doNE by ... ",
" jaZZ aka: maH sis, JeSSICA !!! ",
"| xt3r |",
"ExPer",
"thiNgz i dO",
"baDboyz",
"+ INsanE +",
"WOW.. GG");
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();
'
I'd Do Anything