function ShowQuote(){

randQuote=new Array();
//specify random quotes below
randQuote[1]="<i>&quot;It\'s not what you look at that matters, it\'s what you see.&quot;</i> -- Henry David Thoreau";
randQuote[2]="<i>&quot;Luxury must be comfortable, otherwise it is not luxury.&quot;</i> -- Coco Chanel";
randQuote[3]="<i>&quot;I deeply believe that a beautiful decor can have a beneficial influence on our lives.&quot;</i>  -- Albert Hadley";
randQuote[4]="<i>&quot;We need space that liberates us from terra firma, allowing our spirits to soar and our imagination to take flight.&quot;</i>  -- John Saladino";
randQuote[5]="<i>&quot;Make every room a living room.&quot;</i>  -- Alexandra Stoddard";
//DONOT TOUCH SCRIPT BELOW

/*
Random Script
*/
		var ry=Math.floor(Math.random()*randQuote.length)
		if (ry==0){
			ry=1
		}
/*
Random Flash Wrapper
*/
		//alert(randQuote[ry]);
document.getElementById("randomQuote").innerHTML = randQuote[ry];
}