Name:aMaNdA jOy State:Pennsylvania Metro:Lancaster Birthday:1/24/1990 Gender:Female
Interests:*basketball*football*baseball*shopping*
hanging with ma gurls*movies*laughing*
girls night*games*goofin off*flirtin*boiiz*lollypops*gettin in trouble*smellies*lotions*shoes*pink*
sleepovers*phone*computer*beach*
camping*hearts*love*church*dancing*
singing*jesus*hugs*kisses*sunsets*
holdinhands*sunglasses*plokadots*
stripes*hats*flowers*flipflops*lipgloss*
tanning*walkin in the rain*smiles*cars*pretzels*moonlight walks*walks on the beach*dolphins*animals*cuddling*
holdin ma boii in ma arms*clothes*fairs*talkin*listenin*
blonde moments*amazing memories*swimming*pictures*camras
*drawing*bikinis*family(sometimes)*cell phone*rainbows*colors*candles*babiies*
concerts*partys*old people*summer*
fall*poptarts* and brent<33 Expertise:*dRaMa qUeEn!!* Occupation:Retired
i really hope the weather is better there,then it is here...if not..i'll be pissed..
taking my cell...call sometime? 283"9318
well...i'll post a new entry on how it went..when i get back...hope everyone has a good weekend!
-and to my baby...*you are the most amazing person i have ever met...when im with you..everything feels so great..and my fears,worries..just all go away...you make me sooo soo happy...you are everything to me...and without you...i'd be lost.* |there are plenty of things i want...but your the only thing that i really need...| <33 i love you with all my heart brent heller!! 3.28.05
a:hover {background:url(http://img101.exs.cx/img101/564/hearts5.gif); text-decoration: none;}// 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(
"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",
"they call me:",
"Birthday:",
"Gender:",
"State:",
"Country:",
"Interests:",
"Expertise:",
"Website",
"Email",
"Member since:");
// *** add the replacing words or fragments below
var newWords = 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",
"they call me:",
"Birthday:",
"Gender:",
"State:",
"Country:",
"Interests:",
"Expertise:",
"Website",
"Email",
"Member 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]);
collections[k][i].innerHTML = replacement;
break;
}
}
}
}
}
}
replaceWords();