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

// QUOTATIONS

Quotation[0] = '<p><img src="' + url + '/images/center_banner.jpg"></p>';
Quotation[1] = '<p><img src="' + url + '/images/center_banner1.jpg"></p>';
Quotation[2] = '<p><img src="' + url + '/images/center_banner2.jpg"></p>';
Quotation[3] = '<p><img src="' + url + '/images/center_banner3.jpg"></p>';
Quotation[4] = '<p><img src="' + url + '/images/center_banner4.jpg"></p>';
Quotation[5] = '<p><img src="' + url + '/images/center_banner5.jpg"></p>';
Quotation[6] = '<p><img src="' + url + '/images/center_banner6.jpg"></p>';
Quotation[7] = '<p><img src="' + url + '/images/center_banner7.jpg"></p>';
Quotation[8] = '<p><img src="' + url + '/images/center_banner8.jpg"></p>';
Quotation[9] = '<p><img src="' + url + '/images/center_banner9.jpg"></p>';

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

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