Oh so glamorous♥ ♥





G.L.L.


<
LoveYouChris225
read my profile
sign my guestbook

Visit LoveYouChris225's Xanga Site!

Name: Jennifer
Metro:
Birthday: 11/1/1989
Gender: Female


Interests: Chris*Mariah Carey*The Notebook*Pink*Friends*Summer*Mustangs*Rainy days*Saturday afternoons with Chris*Love*Halloween*My nephew* Kisses* The Sims*
Occupation: Student


Message: message meEmail: email me
AIM: Foxigirl225
AIM: Princessjen8911
AIM: RIPJonGriggs80103


Member Since: 7/2/2004

SubscriptionsSites I Read
Star_Layouts_x3
x3hollywood_glam_princessx3
CELEBRITES_xo
Pageantx3
XxPageantxX
IT23wasONLYaKISS
tootsie8634
MakeMEGlamorous
Music_Galore
BlackoutFX
ROCKstarABILITY
shawty_princess_08615
xXRiSaxX1105
malgal543
Jenna2o7
THE_BESTEST_ICONS_EVER
jeff2715
icongirl
UnKept_Secrets_Of_Me
sHeS_a_DrAmAqUeEn
beautiful_lover

Blogrings
My boyfriend is HOTTER than yours!
previous - random - next

LaVergne High School
previous - random - next

*!*!*ClAsS oF 2008!!! *!*!*
previous - random - next

 I'm Rick James, bitch! 
previous - random - next

*Tennessee*Rocks*My*Sox*
previous - random - next

Jenn-N-Chris since Feb. 25
previous - random - next


Posting Calendar

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

Get Involved!

Suggest a link

Recommend to friend

Create a site


Wednesday, November 02, 2005

Yesturday was my Sweet 16!!! I got a mustang and its really cute. I think I got a job at publix,,


Thursday, August 04, 2005

Me and Chris at Love Circle.

Love Circle

LoL. Hes so cute!

We went to O'Charles first  ( 1 year 5 months <3)

Scooter and Caitlin went with us

Chris driving

******************************************************************************

Me and my new purse and matching wallet

?????

My poor phone!! It has a huge crack on the screen and its so horrible!

we're cool. I look retarded

Leave comments <3


Thursday, July 28, 2005

Currently Listening
The Emancipation of Mimi
By Mariah Carey
see related

Friday night Chris and I just hung out.

Saturday night me,Chris, Caitlin and Scoot all went out to eat at O'Charles and then we went to the OpryLand Hotel and watched some acrobats and a water show. Then we got some ice cream and went to Love Circle. It was so much fun!!

Me and Brittany got our nails done and she got her new phone!! Its really cute!! PINK!!  I love you BREON!!

I reguested a Mariah Carey Layout,,I hope its cute!! I love her she is sooooo beautiful.


Friday, July 22, 2005

Its about time to buy I new phone. Ive only had since Christmas and theres a crack in the screen from where it was in my back pocket and I sat down. Now, my calls are staticy and you can barely hear. Also, Ill have like 6 messages and it wont tell me and one second Im on the phone talking then BAM my phone turns off,,I hate it!!!!

 

Were supose to be having a "party" at Chris' Saturday night,,,

 

 

 


Thursday, July 21, 2005

I hate my life.

 

Once agian Im not good enough and I cant make anyone happy.



Next 5 >>

// // ©2004 EasterEgg // // For use at Xanga only. // // While the date in your blogheader has a fixed format // (e.g. "Tuesday, March 16, 2004") you may want to use // another date format, accustomed to *your* preferences. // This script enables you to apply pretty much any date // format to your blogheader you like. // // Here's how it works: // The script collects all blogheaders and applies to them // a format you define by changing the value of the variable // "dateFormatStr" in the code below. Currently that value is // set to 'ddd, mm/dd/yy', which will result in a date that // looks like this: 'Tue, 03/16/04'. If you want to use slashes // instead of divisions as date separators, go right ahead; you // can even add HTML to the date format string if you like! // // ================= // listing of available constants (using the date // "Tuesday, March 16, 2004" as an example): // // dd = 16 // ddd = Tue // dddd = Tuesday // // mm = 03 // mmm = Mar // mmmm = March // // yy = 04 // yyyy = 2004 // // ================= // // You can use any combination of the above constants. Examples: // // 'mm/dd/yyyy' will result in '03/16/2004' // 'mmm dd, yy' will result in 'Mar 16, 04' // 'mm-dd-yy (dddd)' will result in '03-16-04 (Tuesday)' // '{ ddd, mmm dd, yyyy }', will result in '{ Tue, Mar 16, 2004 }' // // Get the general idea? // // Copy this entire code and paste it in the webstats box of your // Look and Feel page. // // You're free to use this script as long as this comment remains // intact. Future modifications allowed if due credit is given. // function formatEntryDate() { // ***** adjust the dateFormatStr below as you see fit // =================================================== dateFormatStr = 'ddd, mm/dd/yy'; // =================================================== function getMonthNr(sMonth) { months = new Array( "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"); for (var n = 0; n < months.length; ++n) { if (months[n] == sMonth) { if ( n + 1 < 10) return '0' + (n + 1).toString() else return (n + 1).toString(); } } } allDivs = document.getElementsByTagName('div'); for (var i = 0; i < allDivs.length; ++i) { if (allDivs[i].className == 'blogheader') { newDateFormat = dateFormatStr; // day entryDate = allDivs[i].innerHTML; dayLong = entryDate.substr(0, entryDate.indexOf(',')); // dddd dayShort = dayLong.substr(0, 3); // ddd tempStr = entryDate.substr(dayLong.length + 1); dayNr = tempStr.substr(tempStr.indexOf(',') - 2, 2); // dd newDateFormat = newDateFormat.replace('dddd', dayLong); newDateFormat = newDateFormat.replace('ddd', dayShort); newDateFormat = newDateFormat.replace('dd', dayNr); // month monthLong = tempStr.substr(1, tempStr.indexOf(',') - 3);// mmmm monthShort = monthLong.substr(0, 3); // mmm monthNr = getMonthNr(monthShort); // mm newDateFormat = newDateFormat.replace('mmmm', monthLong); newDateFormat = newDateFormat.replace('mmm', monthShort); newDateFormat = newDateFormat.replace('mm', monthNr); // year yearLong = tempStr.substr(tempStr.indexOf(',') + 2); // yyyy yearShort = yearLong.substr(2); // yy newDateFormat = newDateFormat.replace('yyyy', yearLong); newDateFormat = newDateFormat.replace('yy', yearShort); allDivs[i].innerHTML = newDateFormat; } } } formatEntryDate();