Name:Jackie Country:United States State:California Birthday:6/6/1990 Gender:Female
Interests:SPORTS(oh yea), being good to/worrying about/loving/hanging out/talking on the fone with with my friends, watching tv, sitting down, sleeping, playing with my dog Expertise:making people laugh, having a good time, being weird, holding everything inside Occupation:Unemployed/Between Jobs Industry:Nonprofit
rite now im in philly...n my cousins n i are quite silly...we play texas hold 'ems every night...n we have fun without a fright...ovver here its maad hizzot...i cant believe im writing this on the spizzot...this is really fun...over here its already 1...
y????....i can't help but regret...i know i'm not suppose to n just learn from my mistake but just thinking about it i cant learn from it or at least i dunno wat to learn from it...i'm just sooo heartbroken....i can't bear it sometimes.....i mean i've found 60 songs that can express how i feel n its like i wish that they felt tha way i did but they're with someone n theres nothing i could do n theres nothing i can say to bring them back to me....i just feel like crying but i cant cuz i just want to hold back my tears if i had a shoulder to cry on i would but i just dont want to let it out...i-i-i just dont even know ....ima just go n contemplate a little more n all...i'll hit whoever reads this up later...
cant wait til summer school's over foreal tho just cuz i wanna leave this place...so dumb....i swear....sooo much shit is soo oh man foreal no one to talk to either only my cousins that i cant wait to see on august 5th cant wait....man thinking of moving there....maybe by myself i dunno but i think im considering it....im coming back on tha 23rd tho...but yea...soo much stuff man i dont eat as much n e more i dont sleep that much n e more i get distracted sooo easily n i dont even know n e more....everything's just soooo watever wat the fuck shit...watever.................................................................. ................................................................................................ ..........................................................................................................................................................
";
var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("");
} else {
document.write("");
}
} else if (ie4up) {
if (i == 0) {
document.write("
");
} else {
document.write("
");
}
}
}
function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
("snowNS()", speed);
}
function snowIE() { // IE main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
("snowIE()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
// End -->