var quoteText=new Array();
			var quoteCredit=new Array();
			quoteText[0]='"...the ultimate 21st Century epicurean experience."';
			quoteCredit[0]='NB Pulse';
			quoteText[1]='"...ALICE is almost too good to eat. As if."';
			quoteCredit[1]='Sarah Balmond, Monocle';
			quoteText[2]='"...ALICE brings a good energy."';
			quoteCredit[2]='Lapo Elkann, Italia Independent';
			quoteText[3]='"ALICE CHOCOLATE\'s sublime texture and refined<br />taste takes Swiss chocolate into the 21st century."';
			quoteCredit[3]='Sarah Zagoury, Yaffa Assouline\'s Luxury Culture';
			quoteText[4]='"Eat Me"';
			quoteCredit[4]='Fabrice Frere, City Magazine';
			quoteText[5]='"...almost as physically addictive as harder,<br />less legal drugs, and yet found mixing<br />effortlessly with roses and diamonds"';
			quoteCredit[5]='Jacob Brown, V Magazine';			quoteText[6]='"The Wonder Bar"';
			quoteCredit[6]='Aric Chen, Absolute Magazine';
			quoteText[7]='"Perhaps you\'ll be able to taste the<br />glacial waters of the Alps or the herbs<br />of the Amazon rainforest..."';
			quoteCredit[7]='Tuija Seipell, The Cool Hunter';
			quoteText[8]='"...ALICE CHOCOLATE is an exquisite treat<br />through and through."';
			quoteCredit[8]='Ami Kealoha, Cool Hunting';	
	
			var definitiveBG=new Array();	
			definitiveBG[0]="url(ALICE-definitive-bg-2.jpg) top left no-repeat";		
			definitiveBG[1]="url(ALICE-definitive-background.jpg) top left no-repeat";

			var quoteCount=8;
			var definitiveBGCount=1;
			var timer;
			var c=0;
			var cb=0;

			function displayQuote()			{				document.getElementById('text_cell').innerHTML=quoteText[c];
				document.getElementById('credit_cell').innerHTML=quoteCredit[c];				c=c+1;
				if (c>quoteCount) { c=0; }				timer=setTimeout("displayQuote()",7000);			}

			function externalLinks() {				if (!document.getElementsByTagName) return;				var anchors = document.getElementsByTagName("a");				for (var i=0; i<anchors.length; i++) {
					var anchor = anchors[i];
					if ((anchor.getAttribute("href")) && (anchor.getAttribute("rel") == "external"))     					anchor.target = "_blank"; 				}			}

			function changeBackground () {
				cb=cb+1;
				if (cb>definitiveBGCount) {cb=0;}
				document.getElementById('definitive_main').style.background=definitiveBG[cb];
				timer_definitive=setTimeout("changeBackground()",30000);
			}


			image1 = new Image();
			image1.src = "ALICE_head.jpg";

			image2 = new Image();
			image2.src = "ALICE_head_black.jpg";

			window.onload = externalLinks;
