var myquotes = new Array(
	'&#8220;The antithesis of the bland, corporate hotel, this 100-year-old building has an atelier feel.&#8221; WALLPAPER GUIDE',
	'&#8220;...boutique hotel that exudes charm, history, and high-thread-count-Egyptian-cotton chic.&#8221; GLOBE AND MAIL',
	'&#8220;Set your guests up with an affordable room at Vancouver&#8217;s newly refurbished Moda Hotel. Heck, check us in, too!&#8221; - VITAMINV.COM',
	'&#8220;...the Moda is now modern, trendy, and urban&#8221; - MARTINIBOYS.COM' // 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
	
	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()",10000);
}

// Start the first rotation.
window.onload=function(){rotatequote();}

