// Script Part: 1

var date    = new Date().getDate();
var quote   = new Array();

//Type your QOTD between the quotes for each day below and include the author.  Remember, not all months have 31 days so remember the month you are updating for.
 quote[1]   = "For everything you have missed, you have gained something else.<br> -Ralph Waldo Emerson"; 
 quote[2]   = "Falling in love is like being struck by lightning. You can no more make it strike you than you can avoid it.";
 quote[3]   = "Sometimes bad things happen for no reason, no purpose. They just occur and we're left to pick up the pieces the best we can. <br>--Felicity"
 quote[4]   = "Don't let go too soon, but don't hang on too long.<br>-Mitch Albom";
 quote[5]   = "You wanna know what living life to the fullest actually is? It's waking up on a Monday morning with no complaints. It's knowing you always deserve to laugh. It's doing what feels right no matter what. It's doing what you want to, no matter how stupid you look. It's about being yourself, cause no one can tell you you're doing it wrong."; 
 quote[6]   = "I wish I could explain this, but it's not possible. I'll only get so close before pulling away. It's what I do. It's all I know how to do.<br> --Jacqueline Kelly ";
quote[7]   = "Bad things happen fast, but you live through them slow ... and you fall apart for a long time after."; 
 quote[8]   = "People, even more than things, have to be restored, renewed, revived, reclaimed, and redeemed; never throw out anyone.<br> -Audrey Hepburn";
 quote[9]   = "It all brought up such bad memories, I mean whom I trying to kid, you know? A clean break is easier, you can reset it and it heals and you move on, but if you leave things messy, or things dont get put right then it just hurts.. forever.<br> -Little Black Book";
 quote[10]  = "When life becomes more than you can stand,kneel.";
 quote[11]  = "One of the suckiest and most frustrating facts of life is that sometimes rela­tionships just end, often without reason. I truly believe that some­times both men and women simply run out of love, even when there was a lot of it in the beginning. -Greg Behrendt";
 quote[12]  = "Hindsight is 20/20... Knowing now what we didn't know then, realizing we can never fix things, and giving up what's hopelessly lost.";
 quote[13]  = "There's something to be said about a glass half full. About knowing when to say when. I think it's a floating line. A barometer of need and desire. It's entirely up to the individual. And depends on what's being poured. Sometimes all we want is a taste. Other times there's no such thing as enough, the glass is bottomless. And all we want, is more. <br>-Grey's Anatomy";
 quote[14]  = "Though no one can go back and make a brand new start, anyone can start from now and make a brand new ending.<br> -Carl Bard";
 quote[15]  = "You don't realize just how many things remind you of a person until they become someone you no longer wish to remember.";
 quote[16]  = "My cold, hard heart exposed, finally, for what it truly was. Fair warning, I thought. I should have told you from the start. I will let you down. <br>- Sarah Dessen, This Lullaby ";
 quote[17]  = "A ‘No’ uttered from the deepest conviction is better than a ‘Yes’ merely uttered to please, or worse, to avoid trouble.<br>-Gandhi";
 quote[18]  = "I owe you nothing. And you are nothing to me. Thank you for curing me of my ridiculous obsession with love. <br>-Moulin Rouge";
 quote[19]  = "Perhaps when we find ourselves wanting everything, it is because we are dangerously close to wanting nothing.<br> -Sylvia Plath";
 quote[20]  = "At the time, my life just seemed too complete, and maybe we have to break everything to make something better out of ourselves.<br> -Chuck Palahniuk, Fight Club";
 quote[21]  = "‘I loved her.’ he gazed back, his face as empty as a rubber mask. ‘You know what that’s like?’ He shook his head. ‘It’s like knowing all the answers on a test the minute you sit down at your desk. It’s like knowing everything’s going to be okay for the rest of your life. You’re going to ace. You’re going to be fine. You’ll walk around forever, feeling relieved, because you won. <br>-Dennis Lehane, Mystic River.";
 quote[22]  = "'Adapt or die.' As many times as we've heard it, the lesson doesn't get easier. Problem is, we're human. We want more than just to survive. We want love. We want success. So we fight like hell to get those things. Anything else feels like death.<br>-Grey's Anatomy";
 quote[23]  = "Sometimes you couldn’t face the sadness of being forgotten until you felt the comfort of being remembered again.<br>-Anne Brashares";
 quote[24]  = "What had he said to me that first day? Something about natural chemistry. He claimed he’d noticed it right from the start, and maybe it was an explanation, of sorts, of why we kept coming together, again and again.<br>-Sarah Dessen, This Lullaby";
 quote[25]  = "For there is no friend like a sister in calm or stormy weather; to cheer one on the tedious way, to fetch one if one goes astray, to lift one if one totters down, to strengthen while one stands.<br> -Christina Rossetti<br>Happy Birthday, Jenna!";
 quote[26]  = "I guess by now I should know enough about loss to realize that you never really stop missing someone—you just learn to live around the huge gaping hole of their absence.<br>-Alyson Noel";
 quote[27]  = "There’s no way to be a hundred percent sure about anyone or anything. So you’re left with a choice. Either hope for the best or just expect the worst.<br>-Sarah Dessen, Lock & Key";
 quote[28]  = "Wisdom means to choose now what will make sense later.";
 quote[29]  = "It’s amazing because when you’re a kid you see the life you want and it never crosses your mind that it isn’t gonna turn out that way. <br>-Love & Basketball ";
 quote[30]  ="Sometimes, I wish I could walk around with a HANDLE WITH CARE sign stuck to my forehead. <br>-Elizabeth Wurtzel, Prozac Nation.";
 quote[31]  ="Sometimes you love someone so much you become numb to it, because if you didn’t become numb, such strong emotion would kill you.<br> -Riding in Cars with Boys";
function getCalendarDate()
{
   var months = new Array(13);
   months[0]  = "January";
   months[1]  = "February";
   months[2]  = "March";
   months[3]  = "April";
   months[4]  = "May";
   months[5]  = "June";
   months[6]  = "July";
   months[7]  = "August";
   months[8]  = "September";
   months[9]  = "October";
   months[10] = "November";
   months[11] = "December";
   var now         = new Date();
   var monthnumber = now.getMonth();
   var monthname   = months[monthnumber];
   var monthday    = now.getDate();
   var year        = now.getYear();
   if(year < 2000) { year = year + 1900; }
   var dateString = monthname +
                    ' ' +
                    monthday +
                    ', ' +
                    year;
   return dateString;
} // function getCalendarDate()

