	var intervalId;
    var intervalIdArt;	var interval2Id;
    var artArray=new Array("art1","art2","art3");	function init(){		pageScroll();		reviews_display();		wine_display();		//intervalId = self.setInterval ( "wine_display()", 4500 );
        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 = [["2010 Winner: Best Sandwich — Shrimp BLT",
						"Citysearch.com"],
                        
                        ["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"]										];										
                        
                                
    var wine_list = [["Badia A Coltibuono Cetamura Chianti DOCG"],
                     ["Bibi Graetz Casamatta Bianco"],
                     ["Borgo Magredo Pinot Nero"],
                     ["Borgo Magredo Prosecco 187 mL"],
                     ["Cantine Valpane Barbera"],
                     ["Dario d' Angelo Montepulciano d' Abruzzo DOC"],
                     ["De Paolo Pinot Grigio"],
                     ["Duchman Vermentino"],
                     ["La Pisara Negroamaro"],
                     ["Preludio Chardonnay"],
                     ["Rivera Rupicolo"]];
    var wine_count = Math.floor(Math.random() * wine_list.length);    
    function wine_display() {
   // alert(wine_count);
        var input = wine_list[wine_count];
        //document.getElementById('wine_display').firstChild.nodeValue=input;
        
         if(wine_count == wine_list.length - 1) {
		 wine_count = 0;
		}
		
		else{
		wine_count++;
		
		}

    }	
    
    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; 		*/	}	