/**
 * @author Myron
 */
function rotateEvery(sec){
    var Quotation = new Array()
    
    // QUOTATIONS
    Quotation[0] = 'I would rank him among the most accomplished...';
    Quotation[1] = 'I trust my family to Marty...';
    Quotation[2] = 'His craft far exceeds my expectations...';
    Quotation[3] = 'He made me feel very comfortable...';
    Quotation[4] = 'A natural gift...';
    Quotation[5] = 'A completely personalized experience...';
    Quotation[6] = 'I tell him what I want...';
    Quotation[7] = 'By far the best...';
    Quotation[8] = 'You can&#39;t find a better place...';
    Quotation[9] = 'The most talented...';
    Quotation[10] = 'Very professional, genuinely respectful...'
	Quotation[11] = 'My first appointment with Marty was a sigh of relief...'
	Quotation[12] = 'Marty has absolutely improved my quality of life...'
	Quotation [13] = 'He has helped ease tension and pain...'
	Quotation [14] = 'I always come away feeling looser and more refreshed'
	
    
    var which = Math.round(Math.random() * (Quotation.length - 3));
    document.getElementById('textrotator').innerHTML = Quotation[which];
    
    setTimeout('rotateEvery(' + sec + ')', sec * 1000);
}

