. . I M i s s . y o o H . . . content="progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=50, Duration=1)" http-equiv="Page-Enter"> content="progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=50, Duration=1)" http-equiv="Page-Exit">
l_xLiLxBabiixThaNqx_l
read my profile
sign my guestbook

Message: message me
Website: visit my website


Member Since: 10/25/2003

SubscriptionsSites I Read

Blogrings
»» Xángás tóp Ðësignërs ««
previous - random - next


Posting Calendar

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

Get Involved!

Suggest a link

Recommend to friend

Create a site


Saturday, October 25, 2003

         


:: - - » (.. Mood! » Sad
:: - - » (.. Date! »OcToBeR 25th  'o3
:: - - » omg
:: - - » (.. Quote of the Day! »"Things that beginalways have an end.If you can live on,think always of that."

:: This is my temporary xanga for awhile. kuz da other one is broken...-_-;; the sun is actin up errr...dere r like ashes everywhere! damn sun storm! could you believe dat! damn my xanga aint workin -_-'' err if et doesnt start workin im gunna get reallie mad! halloween is comin up

-------------------
everybody cant be everything for you.
everybody smiling in your face ..aint always happy for you.
everybody giving kisses and hugs..dont really care about you.
so becareful what the people around you do or say
some of them are true but others are fake..
behind your back they`ll hate.
everything that glitters isnt gold.

--------------------------------------------------
If there was a time...where we were in control
we were unable to find the bond, we lost it all....
letting the rain drops mix with my tears,
day after day, year after year,
i lost all hope, and looked upon the sky
wishing that one day, i would be able to fly
Those who search, will sure find their way
...as for me, im here.......to stay.
--------------------------------------

the one that explains it all:

*i know i love him.
   but its not the love that you feel when you've found the one. just the one that barely satifies the soul.
   and not the one that makes your heart stop.
just the one that for a single moment, makes it skip.*

just some thought:

*i cant stand being your last. especially since your my first.
*lost in a dream world..wandering around to find reality.
*im one thing you could never and will ever understand.
*smile-sometimes my ignorance loves everyone
*love, one vicious emotion
*how could you understand, if i even don't?

-------------------

-------------------

-------------------

eh john here`z da betta pix of me =]



-------------------

/* Gradual-Highlight Image Script II- By J. Mark Birenbaum (birenbau@ugrad.cs.ualberta.ca) Permission granted to Dynamicdrive.com to feature script in archive For full source to script, visit http://dynamicdrive.com */ nereidFadeObjects = new Object(); nereidFadeTimers = new Object(); /* object - image to be faded (actual object, not name); * destop - destination transparency level (ie 80, for mostly solid) * rate - time in milliseconds between trasparency changes (best under 100) * delta - amount of change each time (ie 5, for 5% change in transparency) */ function nereidFade(object, destOp, rate, delta){ if (!document.all) return if (object != "[object]"){ //do this so I can take a string too setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0); return; } clearTimeout(nereidFadeTimers[object.sourceIndex]); diff = destOp-object.filters.alpha.opacity; direction = 1; if (object.filters.alpha.opacity > destOp){ direction = -1; } delta=Math.min(direction*diff,delta); object.filters.alpha.opacity+=direction*delta; if (object.filters.alpha.opacity != destOp){ nereidFadeObjects[object.sourceIndex]=object; nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate); } }
:: ALwAiSe» l LiLAzNThaNq l » aka » Suzal

----------------------------------------------------------------------------



|| | boy only in my dreamz | ||

boy i look into ur eyez
`nd start to realize
y0o got a new life
`nd plus i aint ur wife
so why should i ever think
that you would ever want me
but ur gone `nd im alone
so ill make it seem like i`m ok
`nd let you g0 day by day
h0pe`n that ur still the same
`nd lo0k at me without shame
b0y i`m goin insane
b.kause ur damagin` my brain
but b0y f0rever i will wait f0r you
b.kause there will nvr be no 0ther f0o
you keep things right
`nd hold me tight
that`z why i`ll do anythin` f0r you
includin` bein true
i took the risk `nd cut my wrist
i said those 3 little w0rds
i tried my best to keep it real
`nd then i t0ld you h0w i feel
i sto0d up `nd act tough
but i guess that ain`t enough . . .

G0D DAMMIT!!! i just LOVE you.



// // ©2003 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( "Member since:", "eProps", "eProp", "Comments", "Comment", "Get Involved!"); // *** add the replacing words or fragments below var newWords = new Array( "est. on", "hearts", "heart", "promises", "promise", "My thouqhts"); 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();