amandapoo_225
read my profile
sign my guestbook

Visit amandapoo_225's Xanga Site!

Name: Amanda
Location: Enid, Oklahoma, United States
Birthday: 4/28/1990
Gender: Female


Interests: I like boys. :):)
Expertise: I am an expert at sucking at life. lol
Occupation: Other
Industry: Other


Message: message meEmail: email me


Member Since: 2/16/2005

SubscriptionsSites I Read
CoolSeth
end_to_an_untold_story
x_un4gotten_x
heartline_lyts
something_unpredictable09
DBlilsis
The_jugallo_thug
lairmore
dwalker6314
X_xpsyce_ravenx_X
Mikaela_Ruth
XoX_Ms_FaBuLoUs_XoX
katiewillrockyoursocks
MICHAEL__D
whoamiamme
Chris_07_Sk8_4_life
RyAn_182
rinkc
RuffRiderz44
chase_15
Josh_2008RULES
mikaela_mcmullen
TheEmptyGlowsticks
yankees_suck_ass
xshe_wrote_murderx
patocka1988
Chase_Wang04
juggalo_baby_joker
xcrippled_soulx
luckybabe_56
daniel8031
Chase_Wang
Modestly_Proposing
fuxaballa22
blazing_eyes_of_fire
Trazniney_Poo
oklahomahellsangel
ErinMarie34
Rachel_Phillips
EmO_GuYs_MaKinG_OuT
emo_boyy
always_smile65
Lukis_Byon
road_fool_abk
Erika_Darlene
TheCoolOne02
Slemp24
Kayla_J

Groups Blogrings
~I love Emo Boys!~
previous - random - next

Insane Clown Posse 4 eva!
previous - random - next

I'm a Goonie.
previous - random - next

Boys with eyeliner..mm hmm!
previous - random - next

! ! !MuSiC RuLeS! ! !
previous - random - next

I support gay marriage / rights
previous - random - next

Sorry if my being a Ninja intimidates you.
previous - random - next

!!! FiGht AgainSt ABORTION !!!
previous - random - next


Posting Calendar

|<< oldest | newest >>|
view all weblog archives

Get Involved!

Suggest a link

Recommend to friend

Create a site


Wednesday, October 04, 2006

 

 

http://www.myspace.com/19624915

 

Me.

Myspace is so much better than xanga.

<3


Saturday, September 23, 2006

NEW CELL PHONE BITCHES!!

Ask me for the number... I may give it to you.. ya never know.. :):)

<333


Monday, September 11, 2006

I got my computer to my new house FINALLY!!!

YAY!

Hmmm.. anyways..

Nothin new really... Schools okay.. Robert and I are great <3.. Works fine.. I got a new puppy! And thats about it..

 

RandomPics 432  Lol, I'm a jerk.. I love him. <3

Leave comments!

<3


Monday, August 21, 2006

Everything is still absolutely wonderful. :)

School started. Blah.

Works good as always.

Still completely in love with Robert. <333

Lifes good.

ily.

Amanda <3


Friday, July 21, 2006

On vacation..

Random new things -

New job.

New boyfriend <3

New house.

New haircut.

....New life..

Things are actually going sooo great for me right now... for once.

Robert is like.. the best thing that has ever happened to me. He is perfect in pretty much every way, I can talk to him about anything.. I can be myself around him.. and I cant do that around too many people.

Then my friends.. DUH! I have the best friends on the planet! Especially my Kristy! I loves that girl. :)

I'm trying this new thing too.. where I dont hold grudges.. lifes too short to be mad at someone for the stupidest things whenever  I could have let it go and continued to be their friend, right?

So, if I was ever mean to anyone about anything and your afraid to talk to me... dont be! Im sorry for being a jerk! lol Seriously though.. I dont want any enemies. Be my friend. :) lol

Well.. thats all for now..

COMMENTS!!

Amanda <33



Next 5 >>

My Box

var rate = 100; // Increase amount(The degree of the transmutation) var obj; // The object which event occured in var act = 0; // Flag during the action var elmH = 0; // Hue var elmS = 128; // Saturation var elmV = 255; // Value var clrOrg; // A color before the change var TimerID; // Timer ID if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) { Browser = true; } else { Browser = false; } if (Browser) { document.onmouseover = doRainbowAnchor; document.onmouseout = stopRainbowAnchor; } function doRainbow() { if (Browser && act != 1) { act = 1; obj = event.srcElement; clrOrg = obj.style.color; TimerID = ("ChangeColor()",100); } } function stopRainbow() { if (Browser && act != 0) { obj.style.color = clrOrg; clearInterval(TimerID); act = 0; } } function doRainbowAnchor() { if (Browser && act != 1) { obj = event.srcElement; while (obj.tagName != 'A' && obj.tagName != 'BODY') { obj = obj.parentElement; if (obj.tagName == 'A' || obj.tagName == 'BODY') break; } if (obj.tagName == 'A' && obj.href != '') { act = 1; clrOrg = obj.style.color; TimerID = ("ChangeColor()",100); } } } //document.write.blogring function stopRainbowAnchor() { if (Browser && act != 0) { if (obj.tagName == 'A') { obj.style.color = clrOrg; clearInterval(TimerID); act = 0; } } } function ChangeColor() { obj.style.color = makeColor(); } function makeColor() { // HSVtoRGB if (elmS == 0) { elmR = elmV; elmG = elmV; elmB = elmV; } else { t1 = elmV; t2 = (255 - elmS) * elmV / 255; t3 = elmH % 60; t3 = (t1 - t2) * t3 / 60; if (elmH < 60) { elmR = t1; elmB = t2; elmG = t2 + t3; } else if (elmH < 120) { elmG = t1; elmB = t2; elmR = t1 - t3; } else if (elmH < 180) { elmG = t1; elmR = t2; elmB = t2 + t3; } else if (elmH < 240) { elmB = t1; elmR = t2; elmG = t1 - t3; } else if (elmH < 300) { elmB = t1; elmG = t2; elmR = t2 + t3; } else if (elmH < 360) { elmR = t1; elmG = t2; elmB = t1 - t3; } else { elmR = 0; elmG = 0; elmB = 0; } } //document.write.blogring elmR = Math.floor(elmR); elmG = Math.floor(elmG); elmB = Math.floor(elmB); clrRGB = '#' + elmR.toString(16) + elmG.toString(16) + elmB.toString(16); elmH = elmH + rate; if (elmH >= 360) elmH = 0; return clrRGB; }





<