function rotateEvery(sec)
{
var Quotation=new Array()

// QUOTATIONS
Quotation[0] = 'In the first quarter of 2009, Lombardo homes shoots to the top of the list of Southeastern Michigan home builders';
Quotation[1] = 'Working with Kaboom is an absolute joy!  Everything is done on time and within budget.  This firm has such a high level of creativity that has really taken our marketing to the next level.';
Quotation[2] = 'KaBoom has provided us with unique and effective marketing campaigns including email blasts, direct mailers, and media ads.  The success and innovation of KaBoom’s marketing efforts have greatly contributed to the growth of new clients for our company.';


var which = Math.round(Math.random()*(Quotation.length - 1));
document.getElementById('textrotator').innerHTML = Quotation[which];

setTimeout('rotateEvery('+sec+')', sec*10000);
}
