var commentsArray = Array(  
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;It&#8217;s the ultimate in the Housewives franchise.&rsquo; <span class="sourcetext">- OK Magazine</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;...their pampered cattiness has the luxurious kick of an old Dynasty episode.&rsquo;<br/><span class="sourcetext">- People</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;Four Stars!&rsquo; <span class="sourcetext">- InTouch Magazine</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;The latest Real Housewives series feels like it should&#8217;ve been the first&rsquo;<br/> <span class="sourcetext">- InTouch Magazine</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;Game over, Bravo! These ladies are the real deal!&rsquo; <span class="sourcetext">- Wendy Williams</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;...the most dramatic freshmen season of any Housewives yet.&rsquo; <span class="sourcetext">- OK Magazine</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;3.5 stars out of 4&rsquo; <span class="sourcetext">- People</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;...this could be the boldest spinoff yet.&rsquo; <span class="sourcetext">- People</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;...the new Beverly Hills chapter delivers.&rsquo; <span class="sourcetext">- People</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;...this could be the boldest spinoff yet.&rsquo;<br/><span class="sourcetext">- US Weekly</span></a>',
                            '<a href="/productions/therealhousewivesofbeverlyhills/">&lsquo;Prepare to be awed when these six Beverly Hills women open the doors<br/>to their jaw-dropping homes and ultra-luxurious lifestyles.&rsquo;<br/> <span class="sourcetext">- Life &amp; Style</span></a>'
                        );
var currentQuote = 0;
var quoteCount = 3;
var rotationTimeout;



function startRotationTimeout() {
    rotationTimeout = setTimeout('doRotateQuote();',3500);
}

function doRotateQuote() {
    textItem = $('#rotatingtext');
    textItem.fadeOut(250, function () {
        $(this).html(commentsArray[currentQuote]).fadeIn(750, function () {
            startRotationTimeout();
            if ((currentQuote+1) == quoteCount) {
                currentQuote = 0;
            } else {
                currentQuote++;
            }
        });
    });
}
$('document').ready(function () {
    $('#pullquote').fadeIn(2000,function () {
        quoteCount = commentsArray.length;
        doRotateQuote();        
    });
});
