var myquotes = new Array(
	'(1/4)&nbsp;&nbsp;&nbsp;<a style="text-decoration: underline; color:white" href="body.cfm?id=1135">Hospital Visitor Restrictions Due to Flu Have Been Lifted</a>',
	'(2/4)&nbsp;&nbsp;&nbsp;<a style="text-decoration: underline; color:white" href="body.cfm?id=1207">Legacy in Haiti</a>',
	'(3/4)&nbsp;&nbsp;&nbsp;<a style="text-decoration: underline; color:white" href="body.cfm?id=455">Landmark Surgery Clears a Girl\'s Vision</a>',
	'(4/4)&nbsp;&nbsp;&nbsp;<a style="text-decoration: underline; color:white" href="body.cfm?id=695">Online Tours Available for Family Birth Centers</a>'
	// Leave the last quote without a comma at the end
	);

function rotatequote()
{
	thequote = myquotes.shift(); //Pull the top one
	myquotes.push(thequote); //And add it back to the end
	if(document.getElementById('quotetext')){
		document.getElementById('quotetext').innerHTML = thequote;
		// This rotates the quote every 10 seconds.
		// Replace 10000 with (the number of seconds you want) * 1000
		t=setTimeout("rotatequote()",4500);
	}
}

// Start the first rotation.
if(window.addEventListener){
	window.addEventListener('load', rotatequote, false);
}else{
	window.attachEvent('onload', rotatequote);
}