// JavaScript Document
function rotateEvery(sec)
{
var Quotation=new Array()
// QUOTATIONS
Quotation[0] = 'Does He Love Me?';
Quotation[1] = 'Who Has The Hot\'s For Me?';
Quotation[2] = 'Who Won Race 1?';
Quotation[3] = 'Am I Right Or Am I Right?';
Quotation[4] = 'Is She The One?';
Quotation[5] = 'Did I Go Too Far Last Night?';
Quotation[6] = 'What Time Is The Next Bus?';
Quotation[7] = 'Whose Shout Is It?';
Quotation[8] = 'Who Is (insert Name and Suburb)?';
Quotation[9] = 'Where\'s The Remote?';
Quotation[10] = 'What\'s A Good Pick Up Line?';
Quotation[11] = 'Will I Get Married?';
Quotation[12] = 'What Is Going To Look Hot In Autumn?';
Quotation[13] = 'Who Scored The First Goal Tonight?';
Quotation[14] = 'How Do You Know All Things Bongo?';
var which = Math.round(Math.random()*(Quotation.length - 1));
document.getElementById('textrotator').innerHTML = Quotation[which];
setTimeout('rotateEvery('+sec+')', sec*1000);
}

