	var intervalId;
    var intervalIdArt;	var interval2Id;
    var artArray=new Array("art1","art2","art3");	function init(){		pageScroll();		reviews_display();				intervalId = self.setInterval ( "reviews_display()", 5000 );
        intervalIdArt = self.setInterval ("tweenOpacitySetUp()", 6000);		/*		clearInterval(int) */	}			function pageScroll() {    	/*window.scrollBy(0,225);*/	}				var count = 0;	var reviews_quote = [["Best Gazpacho",						"My Table Magazine"],												["2002 Nominee: Best Lunch Spot",						"Citysearch.com"],												["2003 Nominee: Best Lunch Spot",						"Citysearch.com"],												["Shrimp BLT recipe published",						"Annual Food & Wine Cookbook - 2003"],												["2003 Nominee: Best Cheap Eats",						"Citysearch.com"],												["2005 Winner: Best Salad",						"Citysearch.com"],												["2005 Winner: Best Salad",						"Citysearch.com"],												["My current favorite...is the shrimp BLT...it's perfect",						"Houston Press"],												["...especially the shrimp BLTs to die for.",						"Houston Zagat Survey"],												["...especially the shrimp BLTs to die for.",						"Houston Zagat Survey"],												["...a top pick for delicious lunches of thoughtfully prepared everyday fare with flair.",						"Houston Zagat Survey"],												["Witty iced cookies, each one a work of art, are the trademark of this lively, fun Montrose corner restaurant.",						"Houston Zagat Survey"],						["Paulie's sandwiches and salads are bright with fresh vegetables.",						"The New York Times Magazine"],													["...menu notes perfectly prepared pasta dishes.",						"Houston Modern Luxury"],												["Check out the sugar cookies, which taste as good as they look.",						"Houston Modern Luxury"],												["Paulie's serves up some of the finest sandwiches in town...",						"AOL City Guide"],												["2002 Nominee: Best Cheap Eats",						"Citysearch.com"]										];													count = Math.floor(Math.random() * reviews_quote.length);				function reviews_display() {			var input1 = reviews_quote[count][0];		var input2 = reviews_quote[count][1];						document.getElementById('review_quote').firstChild.nodeValue=input1;		document.getElementById('review_quoted').firstChild.nodeValue=input2;		 		 if(count == reviews_quote.length - 1) {		 count = 0;		}				else{		count++;				}		document.getElementById('review_quote').firstChild.nodeValue=input1;		document.getElementById('review_quoted').firstChild.nodeValue=input2;					/*		document.getElementById('reviews').style.opacity="alpha(opacity=50)";		document.getElementById('reviews').style.opacity=0.2; 		*/	}	