<!-- Author: Steve S - http://jsmadeeasy.com/


var seconds=5; /* rotate every 5 seconds */
function rotate()
{
        var Quotation=new Array()

        // QUOTATIONS
        Quotation[0] = 'GabCab receives four stars and a recommendation from us, so enjoy the ride.<br><div align="right">- David Becker, <a href="http://www.gamezebo.com/download-games/gabcab/review" target="_new"><b>GameZebo</a></b></div>';
        Quotation[1] = '...within 10 minutes, knew I was going to be purchasing it.<br><br><div align="right">- Diskette667</div>';
        Quotation[2] = 'It is definitely one that is worth sticking with beyond the first handful of levels.<br><div align="right">- John Bardinelli, <a href="http://jayisgames.com/archives/2010/09/gabcab.php" target="_new"><b>Jay Is Games</a></b></div>';
        Quotation[3] = 'If you liked Airport Mania, you will simply love GabCab.<br><br><div align="right">- carfixer1957</div>';
        Quotation[4] = 'After half an hour or so, you begin to realize the depth of strategy the unassuming title offers, creating interesting efficiency puzzles in a variety of ways.<br><div align="right">- John Bardinelli, <a href="http://jayisgames.com/archives/2010/09/gabcab.php" target="_new"><b>Jay Is Games</a></b></div>';
		Quotation[5] = 'In a...charming style this game takes an amusing look at the taxi business, providing smiles, challenge, and a way above-average playtime.<br><div align="right">- David Becker, <a href="http://www.gamezebo.com/download-games/gabcab/review" target="_new"><b>GameZebo</a></b></div>';
		Quotation[6] = '...not only insanely cute but it is very addictive, too.<br><br><div align="right">- Jessica Moen, <a href="http://www.gamertell.com/gaming/comment/gamertell-review-gabcab-for-windows-mac/" target="_new"><b>Gamertell</a></b></div>';   
		Quotation[7] = '...perfect for someone who loves addictive puzzles...<br><br><div align="right">- Jessica Moen, <a href="http://www.gamertell.com/gaming/comment/gamertell-review-gabcab-for-windows-mac/" target="_new"><b>Gamertell</a></b></div>'; 
		Quotation[8] = 'If you crave simple tasks, endless replay value and feel-good achievement it is hard to imagine a better value.<br><div align="right">- Richard Clark, <a href="http://www.ztgd.com/10011/GabCab.html" target="_new"><b>ZTGD</a></b></div>'; 


        var which = Math.round(Math.random()*(Quotation.length - 1));         document.getElementById('textrotator').innerHTML = Quotation[which];
}
function start()
{
  setInterval("rotate()",seconds*1000);
}


