Interests:yea so...i hate school, love my boyfriend,cant stand my parents(most of the time)and like to hang out with my home skillets. hehe...love rock music. some faves are of course oldies but goodies: ac/dc,pink floyd,zepplin. into 80s music,yo,and alot of new rock 2.but then again,everybodys gotta love country!!! Expertise:im a master of all trades(LOL,that just sounds cool) Occupation:Retired Industry:Other
wow so this is cool. xanga had changed a lil since the last time i was here...nice.
my life is pretty much the same as it has been since the last time i updated. still going to school and all that. still workin at the same place cept for im supposed to start workin at crispers in bartow after thanksgiving. should be a good way to get a little Christmas money. i guess im officially a pimp now since i believe that dating one guy for any time period lasting longer than two weeks is a waste of time...lets see what else...should be gettin a new vehicle pretty soon(( not new, just new to me[andrews truck] )) hmmm...not much else. just doin what i can to hang in there for my senior year. its really tuff. i've had senioritis since the 10th grade so i would say that its pretty difficult to stay focused. i remember someone telling me that once i got to high school i would want to sleep in all my classes and i had no idea what they were talkin about. i could barely sit still much less fall asleep..my my my how thats changed. sleeping should be the course title for geometry( yes i know, dont snicker. a senior in gemoetry)and homework..psh. but im somehow manging to stay in there. i always seem to pull through somehow in the end. have i given any thoughts to college? sure. but dont ask any specifics cuz i have no idea. but i thought that being the person who designs stuff on really cool teeshirts would be a cool job. we'll see.
OK WOW. So its been like 4 months since i been on here. CRAZY. I remember when this crap was addicting. But yea. So my life has been pretty much the same except that i got a job and no longer have a significant other....i guess that means my life hasn't been the same at all HAHA. Not that thats a bad thing. My car is still a total piece, if not more, which may be hard to believe. This coming year is my final year of high school. Woopty-dooo..I think im more apprehensive about it than i am excited. I take the my senior pics turning out like crap is a sign that the whole year will be crappy. Crap, Crap, Crap. I guess i could see a brighter side though. Maybe all the change will be a good thing. Maybe it's just what i needed. Hopefully. In the past month i've met some awesome new people and even caught up with some that i lost contact with a long time ago. So that's nice. Im good for now. TTYL <3 --MANDY
AHHHH YESSS! Im gettin a car. my parents put a deposit on it yesterday and we're going to go get it today i think. it aint much but it runs. its a 92' mercury capri convertible. its kinda funny lookin with the top on..its so little. i could barely fit in the back seat. its aight i guess. specially since it was only $1,100. but it has alot of miles on it. the only real problem is that it's a stick so im not gonna be able to drive it for awhile, or at least until i learn. hopefully it wont take that long. i gotta get a job so i can pay for insurance though. thats not really prob cuz i've wanted a job for a long time, but i dont know if insurance on a convertible will be exspensive or whatever. yep well i just thought that i would inform all of yall on my good news!!! TTYL <3
Besides my parents being kind of stupid as always every now and then, things have been going awesomely. I guess the moving process could move a little more quickly but no big deal. its all good.im just really anxious to get a car. and the sooner we move, the sooner I get a job and the sooner i get a car..so yea. Im really hungry though. i dont know how long this diet thing is gonna last.. I've noticed a little extra poundage...haha that sounds kinda gross. But for real i like my fried chicken, mcdonalds, and biscuits and gravy a litlle too much for my own health. But besides those two very minute inconveniences, things have been AWESOME!!! I cant wait for Valentines day...sigh He's so cute...
yea so i guess i havent updated in a really long time. myspace has been keeping me pretty busy. it aint like people ever commented on this thing anyways! haha...well things have been going aight i guess. nuthin much new cept for me changing schools(to bartow). now i get to see my sweet BF every day! YESSSSS!Thats enuf for now. ttyl!!
// *** Smiley Script V 2.2 ***
//
// (c)2003 by EasterEgg, http://www.xanga.com/easteregg
//
// You can use this code freely, as long as the entire script remains intact.
//
// WHAT'S NEW?
//
// 1.0 (February 11, 2003)
// - initial release
//
// 2.0 (May 12, 2003)
// - cross browser: it runs in IE, Netscape, Mozilla and Opera
// - ready for the upcoming (beta tested) changes at Xanga
// - clickable smileys, even for non-IE users, displayed in buttons
// - customizable number of smileys displayed in one row
// - customizable smiley button size
// - easily adjustable: only two arrays to maintain
//
// 2.1 (May 12, 2003)
// - preloading images for faster performance
// - XP Bugfix
//
// 2.2 (May 17, 2003)
// - necessary adjustments made because of recent changes at Xanga
// - made suitable for Mac users!
// - runs only at the comment page for increased performance
//
// HOW TO USE:
// For use at Xanga only. Copy this entire code (including the script tags)
// and paste in the Website Stats box at your Look and Feel page. Make sure
// the previous version of this script (if any) is completely removed first.
//
// The script contains two arrays: "textSmileys" and "realSmileys". The items
// present in the array "textSmileys" will be automatically replaced with the
// corresponding images in the array "realSmileys". You can modify the arrays
// as you see fit, as long as both arrays keep the exact same number of items.
//
// For example, suppose you want to add some smiley to the script... that would mean
// in "textSmileys" you would add a shorthand like ":some_smiley:" or {somesmiley},
// and in "realSmileys" you would add it's url: "http://www.dude.com/some_smiley.gif".
//
// SETTINGS:
// - "maxNumberOfSmileysPerRow": number of smileys that will be displayed in one row.
// Smileys above that number will automatically be added to a new line. 10 by default.
// - "buttonSize": size of the smiley buttons in pixels. 30 px by default.
//
// AVAILABILITY:
// The script has been tested in the latest versions of IE, Netscape,
// Mozilla and Opera (Windows 98).
//
function typeSmiley(sSmiley)
{
if (document.getElementsByTagName('textarea')[0].getAttribute('name') == 'bdescr')
var editor = document.getElementsByTagName('textarea')[0];
else
{
var allTextAreas = document.getElementsByTagName('textarea');
for (i = 0; i < allTextAreas.length; ++i)
{
if (allTextAreas[i].getAttribute('name') == 'bdescr')
{
var editor = allTextAreas[i];
break;
}
}
}
editor.value = editor.value + sSmiley;
}
function replaceTextSmileys()
{
// ***add textual emoticons to the array below
var textSmileys = new Array(
":)",
":(",
":wink:",
":p",
":lol:",
":mad:",
":heartbeat:",
":love:",
":eprop:",
":wave:",
":sunny:",
":wha:",
":yes:",
":sleepy:",
":rolleyes:",
":lookaround:",
":eek:",
":confused:",
":nono:",
":fun:",
":goodjob:",
":giggle:",
":cry:",
":shysmile:",
":jealous:",
":whocares:",
":spinning:",
":coolman:",
":littlekiss:",
":laugh:");
// *** add the url's from the corresponding images below
var realSmileys = new Array(
"http://www.xanga.com/Images/smiley1.gif",
"http://www.xanga.com/Images/smiley2.gif",
"http://i.xanga.com/Alice/AliceSmileyAnimatedWink.gif",
"http://www.xanga.com/Images/smiley4.gif",
"http://i.xanga.com/Alice/Smileylol.gif",
"http://i.xanga.com/Alice/7_mad.gif",
"http://i.xanga.com/Alice/heartbeating.gif",
"http://i.xanga.com/Alice/SmileLove.gif",
"http://i.xanga.com/Alice/eProp.gif",
"http://i.xanga.com/Alice/SmileyWave.gif",
"http://i.xanga.com/Alice/sunnySmiley.gif",
"http://i.xanga.com/Alice/wha.gif",
"http://i.xanga.com/Alice/yes.gif",
"http://i.xanga.com/Alice/Smileysleep.gif",
"http://i.xanga.com/Alice/Smileyrolleyes.gif",
"http://i.xanga.com/Alice/SmileyLookaround.gif",
"http://i.xanga.com/Alice/Smileyeek.gif",
"http://i.xanga.com/Alice/Smileyconfused.gif",
"http://i.xanga.com/Alice/SmileyAnimatedNoNo.gif",
"http://i.xanga.com/Alice/propeller.gif",
"http://i.xanga.com/Alice/goodjob.gif",
"http://i.xanga.com/Alice/emot-giggle.gif",
"http://i.xanga.com/Alice/blueAnimatedCry.gif",
"http://i.xanga.com/Alice/Animatedshysmile.gif",
"http://i.xanga.com/Alice/AliceJealous.gif",
"http://i.xanga.com/Alice/19_indifferent.gif",
"http://i.xanga.com/Alice/Smileyspinning.gif",
"http://i.xanga.com/Alice/25_coolguy.gif",
"http://i.xanga.com/Alice/AliceSmileyAnimatedBlinkKiss.gif",
"http://i.xanga.com/Alice/LaughingAgua.gif");
// *** number of smileys that will be displayed per row
var maxNumberOfSmileysPerRow = 10;
// *** button size in pixels
var buttonSize = 30;
// preloading images
var preloadedImages = new Array(realSmileys.length);
for (i = 0; i < preloadedImages.length; ++i)
{
preloadedImages[i] = new Image();
preloadedImages[i].src = realSmileys[i];
}
var allTableData = document.getElementsByTagName('td');
var indx;
var smiley;
var replacement;
for (var i = 0 ; i < allTableData.length ; ++i )
{
for ( var n = 0 ; n < textSmileys.length; ++n )
{
if ((allTableData[i].innerHTML.toUpperCase().indexOf('TABLE') == -1) &&
(allTableData[i].innerHTML.indexOf('previewHTML()') == -1))
{
indx = allTableData[i].innerHTML.indexOf(textSmileys[n]);
if (indx != -1)
{
while (indx != -1)
{
replacement = '';
indx = allTableData[i].innerHTML.indexOf(textSmileys[n]);
smiley = ''
replacement = allTableData[i].innerHTML.replace(textSmileys[n],smiley);
allTableData[i].innerHTML = replacement;
}
}
}
}
}
if (document.URL.indexOf('weblogs') != -1)
{
var smileyCollection = new Array(realSmileys.length);
var smileyBar = '';
if (document.getElementById('htmleditor'))
{
for (i = 0; i < smileyCollection.length; ++i)
{
smileyCollection[i] = '';
}
}
else
{
for (i = 0; i < smileyCollection.length; ++i)
{
smileyCollection[i] = '';
}
}
for (i = 0; i < smileyCollection.length; ++i)
{
if (i != 0)
if ( (i/maxNumberOfSmileysPerRow).toString().indexOf('.') == -1)
smileyBar = smileyBar + ' ';
smileyBar = smileyBar + smileyCollection[i];
}
// add SmileyBar
infoLink = '' +
'Smiley Script
';
smileyBarHtml = ' Add Emoticons ' +
'Simply add emoticons to your comments by clicking them! ' +
infoLink + smileyBar + '
';
if (navigator.userAgent.indexOf('Mac') == -1)
{
if (document.getElementById('htmleditor'))
var obj1 = document.getElementById('htmleditor').parentNode;
else
{
if (document.getElementsByTagName('textarea')[0].getAttribute('name') == 'bdescr')
var obj1 = document.getElementsByTagName('textarea')[0].parentNode;
else
{
var allTextAreas = document.getElementsByTagName('textarea');
for (i = 0; i < allTextAreas.length; ++i)
{
if (allTextAreas[i].getAttribute('name') == 'bdescr')
{
var obj1 = allTextAreas[i].parentNode;
break;
}
}
}
}
var obj2 = document.createElement('span');
obj2.setAttribute('ID','idSmileyBar');
obj2.innerHTML = smileyBarHtml;
obj1.insertBefore(obj2,obj1.firstChild);
}
else
{
// alternative solution for the Mac
for (var i = 0 ; i < allTableData.length ; ++i )
{
if ((allTableData[i].innerHTML.toUpperCase().indexOf('TABLE') == -1) &&
(allTableData[i].innerHTML.indexOf('previewHTML()') == -1))
{
if (allTableData[i].innerHTML.toUpperCase().indexOf('(OPTIONAL)') != -1)
{
var temp = allTableData[i].innerHTML;
allTableData[i].innerHTML = temp + ' ' + smileyBarHtml;
break;
}
}
}
}
}
}
if (document.URL.indexOf('weblogs') != -1)
replaceTextSmileys();