|
| new xanga.
comment & subscribe. <3333 | | |
| hope everyone had fun tonight.
i know i did. *cough*
i wouldnt exactly call a shot in each arm + a shot in the neck a fun time. at all.
i'm in so much pain right now.
someone take care of me. =/
<3
| | |
| i deleted all of my ryan pictures off of here because they stretched it out too much and pissed me off, so yeah.
i'm so glad this week is almost over.
and i want to hang out with chris. (i know i say that alot, but i
never get to hang with him.) it just sucks that he lives all the way in muncie.
=/
and my sunburn makes me look like shit.
my nose and chin are completely raw. *sigh*
so, i got my CAT scan today. that was uhm...unpleasant. and it was extremely uncomfortable.
and tomorrow i am going to the doctor, and i'm getting all poked and
crap. so, yeah, this is going to be just so fun for me.
i MIGHT go to the game tomorrow. chris might come, so yeah, that would be extra awesome and what not.
but if he doesnt go, i will have no motivation to go. so uhm...yeah.
GAH, why am i always so freaking sad?
i need happy pills....or a boyfriend. haha, YEAH, that would be nice. *double sigh*
oh, and lately...i've been talking to the more popular girls.
like molly and ashley and briana. i mean, i usually talk to them.
it's not like we're BEST FRIENDS *GIGGLEZ* or anything, but yeah, we get along.
and i just...ENVY them.
i shouldnt. and i normally dont, but i do.
i wish i was perfect and skinny and always did things with my friends
and went places with them and got to cuddle with my boyfriend (which i
dont have.).
but i AM losing weight, and it should make me feel better. except it doesnt.
and you know what else sucks?
really really really liking
someone who is like...extremely awesome. except...they don't like
you back. and then you wish they did so so so SO much, but they
just want to be your buddy.
and barely your buddy at that.
he's constantly surrounded by the PRETTIEST girls that i could never
compete with. and i come walking in with my stupid, painful
sunburn, my half ass fixed hair, my faded t-shirt, and jeans a size too
big, and laughing and sounding like a dead racoon.
there's nothing cute / adorable / awesome about that. it makes me hate myself. alot.
| | |
| new xanga song.
it's you by ryan cabrera.
if you have firefox, it doesnt work.
<3
edit
why am i so freaking sad? *sigh*
someone cheer me up. ...please. =/ </3
| | |
| wow.
the simple pleasures of life are worth living for.
my mom and i went to kohls to get me a new bag to carry around school since mine ripped.
and on the way home, i popped in my you stand watching cd and the
windows were rolled down. the breeze was perfect. and we
were just driving down the road home.
it was just...wow.
<3
| | |
|
|
|
|
//
// © 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(
"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:",
"Metro:",
"State:",
"Country:",
"Interests:",
"Expertise:",
"Website:",
"Email:",
"AIM:",
"Yahoo:",
"Member Since:");
// *** add the replacing words or fragments below
var newWords = new Array(
"my lovers",
"Publish Comments",
"regrets",
"regret",
"regrets",
"tragedies",
"tragedy",
"tragedies",
"mail me, bitches",
"Profile",
"take some time",
"im extra lame, so...",
"Posts",
"Get Involved!",
"3 break my heart",
"you can call me",
"started dying",
"i use tampons, so im a",
"come visit me in",
"we have corn here in",
"bush in an asshole in the",
"i ♥",
"my skills",
"Website",
"love me back",
"drop a line",
"",
"rambling about nothing 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();
|
|