// Quote Rotator
/*
var quotes = new Array(

"Even if you only make $7 an hour that means the 30 minutes I just saved you is worth $3.50.  Spread the love a little.",
"You needed my help, now I need yours.  Seriously.  I have two kids and a wife.",
"I didn't put this button on here because I liked the color.",
"I suppose you think the Magical Blogpost Fairy just snaps her fingers and these well-written, informative articles appear out of thin air.",
"Guys: Help me prove to my wife that I'm not wasting my time with this blog.  It's for the good of all men.",
"Go ahead and click it.  Come on, you know you want to.  All the cool kids are doing it.",
"Seriously, I spent hours writting this post and you can't spend two minutes and five dollars thanking me?",
"Short of moving the mouse and clicking this button myself what do I have to do here?",
"Anyone know what the 'pleading' emoticon looks like?",
"People who would donate:<br/>Miss Manners, Gandhi, Michael Jordan, your mother...",
"Man, I really feel like paying this guy for his help.<br/>&lt;/subliminalMessage&gt;",
"Are you kidding me?  How long are you going to sit here watching these and not donate?"

);

var lastQuote = Math.floor(Math.random()*quotes.length);
var saying = null;

$(document).ready(function() {
    $("#saying").html(quotes[lastQuote]);
    var newTop = ($("#sayingWrap").height() - $("#saying").height()) / 2;
    $("#saying").css({paddingTop:newTop});
    window.setTimeout(getQuote, 7500);
});

function getQuote() {
    lastQuote = (lastQuote + 1 < quotes.length) ? lastQuote + 1 : 0;
    $("#saying")
      .fadeOut('slow', function() {
          $("#saying").html(quotes[lastQuote]);
          var newTop = ($("#sayingWrap").height() - $("#saying").height()) / 2;
          $("#saying").css({paddingTop:newTop});
          })
      .fadeIn('slow')
    ;
    window.setTimeout(getQuote, 7500);
}
*/
