			var quoteText=new Array();
			var quoteCredit=new Array();

			quoteText[0]='"Best Men\'s Salon"';
			quoteCredit[0]='NEW YORK MAGAZINE';
			quoteText[1]='"Martial Vivot is a New York City style guru."';
			quoteCredit[1]='OUT MAGAZINE';
			quoteText[2]='"Best High End Men\'s Hair Cut"';
			quoteCredit[2]='NEW YORK MAGAZINE';			
			quoteText[3]='"Posh without pretense."';
			quoteCredit[3]='VANITY FAIR';
			quoteText[4]='"The Barber of Seville. Or anywhere else you want to fly him."';
			quoteCredit[4]='DEPARTURES MAGAZINE';
			quoteText[5]='"A discreet, little jewel of a space ... for men who want to get coiffed."';
			quoteCredit[5]='NEW YORK TIMES';
			quoteText[6]='"Best Straight Razor Shave."';
			quoteCredit[6]='NEW YORK MAGAZINE';			
			quoteText[7]='"Vivot might just give the most perfect Men\'s haircut in the city."';
			quoteCredit[7]='DAILY NEWS';
			quoteText[8]='"... a modern twist to the ritual of a hot soapy shave."';
			quoteCredit[8]='PARIS VOGUE HOMMES';
			quoteText[9]='"A luxurious experience, a calm refuge, a full range of services—all with razor-sharp precision."';
			quoteCredit[9]='ROBB REPORT';
			quoteText[10]='"Editor\'s Pick"';
			quoteCredit[10]='BLACKBOOK';
			quoteText[11]='"There\'s nothing like a Losi cut."';
			quoteCredit[11]='T STYLE, THE MOMENT';
			quoteText[12]='"Victor Szeto is quickly becoming the one to watch in the world of men\'s styling."';
			quoteCredit[12]='MANHATTAN';

			var quoteCount=quoteText.length-1;
			var timer;
			var c=0;
			var cb=0;

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

function showPopup(url) {
	newwindow=window.open(url,'name','height=240,width=320,top=200,left=300,resizable');
	if (window.focus) {newwindow.focus()}
} 

function changeScreenSize(w,h)
     {
       window.resizeTo( w,h )
     }
