Interests:I love God and not scared to show it. my family means the world to me. i enjoy watching movies...talking on the phone...the beach...flip flops...summer...my friends...shopping.. and being blond. and have fun just being me. but most of all.... i love dancing in the rain <333
It seems like yesterday that my world fell from the sky It seems like yesterday I didn't know how hard I could cry It feels like tomorrow I may not get by But I will try, I will try Wipe the tears from my eyes
[Chorus] I'm beautifully broken And I don't mind if you know it I'm beautifully broken And I don't care if I show it
Everyday is a new day, I'm reminded of my past Everytime there's another storm I know that it won't last Every moment I'm filled with hope cause I get another chance But I will try, I will try Got nothing left to hide
[Chorus] I'm beautifully broken And I don't mind if you know it I'm beautifully broken And I don't care if I show it
Without the highs and the lows Where would we go Where would we go...
[Chorus] I'm beautifully broken And I don't mind if you know it I'm beautifully broken And I don't care if I show it Ohh.... I'm beautifully broken I'm beautifully broken
I'm beautifully broken And I don't care if I show it
function replaceWords()
{
// ***add the words or fragments you wish to replace below
var oldWords = new Array(
"Subscriptions",
"About Me:",
"Name:",
"Birthday:",
"Expertise:",
"State:",
"Email:",
"Virginia",
"Interests:",
"Stats",
"Gender:",
"Female",
"Posting Calendar",
"Website:"
"My Blogrings");
// *** add the replacing words or fragments below
var newWords = new Array(
"lOvEd OnEs//",
"InFo//",
"NaME",
"BiRTHDAY//",
"EXPERTiSE//",
"STaY AT//",
"EMAiL//",
"ViRGiNiA 757~",
"WhAt I lOvE//",
"STATZ//",
"GENDeR//",
"FEMaLE~",
"//CALENDAR//",
"pIcTuReS//"
"//BLOGRiNGS//"); 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();