var quotes=new Array();
quotes[0] = "I'm scared Lord<br />Have I been living in a dream<br />Cause now it seems like<br /> The world's a very big place to me<br />I guess I was blind<br />I just didn't want to see<br />That all that's been going on is reality.";
quotes[1] = "I'm afraid to write my future<br />I'm afraid to see it's not true<br />When I look into the mirror<br />I'm afraid to see it's not you.";
quotes[2] = "The pressure to succeed<br />The pressure to lose<br />The pressure to live<br />The pressure to choose.";
quotes[3] = "I got society on one side<br />Family on the other<br />Friends mixed in the middle<br />Can I find myself another.";
quotes[4] = "Sometimes the left is right<br />And the right is wrong.";
quotes[5] = "I know that you and me<br />Have gone our separate ways<br />But in my heart I believe<br />We'll meet another day.";
quotes[6] = "I'm a little bit of sunshine<br />A little bit of rain<br/>A little bit of fun times<br />A little bit of pain.";
quotes[7] = "You think you see it all<br />By just usin your eyes<br />But what you don't see<br />Will come as a big surprise.";
quotes[8] = "Look at him, tell me what do you see<br />I see a soul trapped in misery<br />waitin for the day when this will all end<br />A glass bottle his only friend.";
quotes[9] = "He's got smoke for lungs<br />Alcohol for veins<br />When the heart keeps drownin<br />Not much remains.";
quotes[10] = "Baby, baby can't you see<br />Your love is the only thing I need<br />You're the only one for me<br />Because of you my life's complete.";
quotes[11] = "Tossin and turnin, I can't sleep<br />Us together is the dream I see<br />Your beautiful smile, mysterious eyes<br />If this is heaven then I think I'll die.";
quotes[12] = "They say that love is patient<br />Love is kind<br />Love never ends<br />But it does play with your mind<br />Some have faith<br />Some hope for love that's true<br />But the greatest of these<br />Has always been loving you.";
quotes[13] = "I guess when it comes to love<br />You gotta make that jump<br />But your only hope<br />Is that they actually catch you.";
quotes[14] = "I got you doin things<br />Put you in a trance<br />The way you move it girl<br />I'd like to be your pants.";
quotes[15] = "In my heart and deep within my soul<br />Loving you is the only thing I know<br />Through these years<br />I've seen many come and go<br />But in the end<br />They've got nothing left to show.";
quotes[16] = "If you take the fun out of life<br />You are only left with a lie.";
quotes[17] = "I've been lookin up and down<br />Lookin for the girl but she's not around<br />I've been lookin left and right<br />Lookin for the girl but she's outta sight.";
quotes[18] = "I've seen many ups and downs<br />I've seen smiles and frowns<br />Travel from town to town<br />But it's the same all around.";
quotes[19] = "I want all of you to know<br />That this life is like a show<br />We can watch and follow<br />Be like everyone you know<br />But is that reality<br />Don't believe everything you see<br />Once the channel's been set<br />Then what you see is what you get.";
quotes[20] = "The tide can't wash away<br />My footprints in the sands of time.";
quotes[21] = "Ain't it funny that leaders<br />Wanna gain control of the ones they buried<br />In a six foot hole in the ground.";
quotes[22] = "You talk the talk<br />Ain't like some hypocrits<br />Well walk the walk<br />Forget it here's a seat to sit.";
quotes[23] = "Is there a chemistry<br />In between you and me<br />So what's it gonna be, you're my destiny<br />Can't you see.";
quotes[24] = "Lean back windows down<br />Music blastin all around<br />Everybody hear this sound<br />Any town it's so renoun<br />In the club, in the streets<br />Stand up take a seat<br />Is your life incomplete<br />Then try to find your destiny.";
quotes[25] = "They say that good things<br />Come to those who wait<br />Too many years is much too late.";
quotes[26] = "I dont know what tomorrow brings<br />And I dont know if we will mean anything<br />All I know is that you are mine<br />One day at a time.";

var q = quotes.length;
var whichquote=Math.round(Math.random()*(q-1));
function showquote(){document.write(quotes[whichquote]);}
showquote();