
/**
 * An autosuggest textbox control.
 * @class
 * @scope public
 */
function AutoSuggestControl(oTextbox /*:HTMLInputElement*/, 
                            oProvider /*:SuggestionProvider*/) {
    
    /**
     * The currently selected suggestions.
     * @scope private
     */   
    this.cur /*:int*/ = -1;

    /**
     * The dropdown list layer.
     * @scope private
     */
    this.layer = null;
    
    /**
     * Suggestion provider for the autosuggest feature.
     * @scope private.
     */
    this.provider /*:SuggestionProvider*/ = oProvider;
    
    /**
     * The textbox to capture.
     * @scope private
     */
    this.textbox /*:HTMLInputElement*/ = oTextbox;
    
    //initialize the control
    this.init();
    
}

/**
 * Autosuggests one or more suggestions for what the user has typed.
 * If no suggestions are passed in, then no autosuggest occurs.
 * @scope private
 * @param aSuggestions An array of suggestion strings.
 * @param bTypeAhead If the control should provide a type ahead suggestion.
 */
AutoSuggestControl.prototype.autosuggest = function (aSuggestions /*:Array*/,
                                                     bTypeAhead /*:boolean*/) {
    
    //make sure there's at least one suggestion
    if (aSuggestions.length > 0) {
        if (bTypeAhead) {
           this.typeAhead(aSuggestions[0]);
        }
        
        this.showSuggestions(aSuggestions);
    } else {
        this.hideSuggestions();
    }
};

/**
 * Creates the dropdown layer to display multiple suggestions.
 * @scope private
 */
AutoSuggestControl.prototype.createDropDown = function () {

    var oThis = this;

    //create the layer and assign styles
    this.layer = document.createElement("div");
    this.layer.className = "suggestions";
    this.layer.style.visibility = "hidden";
    this.layer.style.width = this.textbox.offsetWidth;
    
    //when the user clicks on the a suggestion, get the text (innerHTML)
    //and place it into a textbox
    this.layer.onmousedown = 
    this.layer.onmouseup = 
    this.layer.onmouseover = function (oEvent) {
        oEvent = oEvent || window.event;
        oTarget = oEvent.target || oEvent.srcElement;

        if (oEvent.type == "mousedown") {
            oThis.textbox.value = oTarget.firstChild.nodeValue;
            oThis.hideSuggestions();
        } else if (oEvent.type == "mouseover") {
            oThis.highlightSuggestion(oTarget);
        } else {
            oThis.textbox.focus();
        }
    };
    
    
    document.body.appendChild(this.layer);
};

/**
 * Gets the left coordinate of the textbox.
 * @scope private
 * @return The left coordinate of the textbox in pixels.
 */
AutoSuggestControl.prototype.getLeft = function () /*:int*/ {

    var oNode = this.textbox;
    var iLeft = 0;
    
    while(oNode.tagName != "BODY") {
        iLeft += oNode.offsetLeft;
        oNode = oNode.offsetParent;        
    }
    
    return iLeft;
};

/**
 * Gets the top coordinate of the textbox.
 * @scope private
 * @return The top coordinate of the textbox in pixels.
 */
AutoSuggestControl.prototype.getTop = function () /*:int*/ {

    var oNode = this.textbox;
    var iTop = 0;
    
    while(oNode.tagName != "BODY") {
        iTop += oNode.offsetTop;
        oNode = oNode.offsetParent;
    }
    
    return iTop;
};

/**
 * Handles three keydown events.
 * @scope private
 * @param oEvent The event object for the keydown event.
 */
AutoSuggestControl.prototype.handleKeyDown = function (oEvent /*:Event*/) {

    switch(oEvent.keyCode) {
        case 38: //up arrow
            this.previousSuggestion();
            break;
        case 40: //down arrow 
            this.nextSuggestion();
            break;
        case 13: //enter
            this.hideSuggestions();
            break;
    }

};

/**
 * Handles keyup events.
 * @scope private
 * @param oEvent The event object for the keyup event.
 */
AutoSuggestControl.prototype.handleKeyUp = function (oEvent /*:Event*/) {

    var iKeyCode = oEvent.keyCode;

    //for backspace (8) and delete (46), shows suggestions without typeahead
    if (iKeyCode == 8 || iKeyCode == 46) {
        this.provider.requestSuggestions(this, false);
        
    //make sure not to interfere with non-character keys
    } else if (iKeyCode < 32 || (iKeyCode >= 33 && iKeyCode < 46) || (iKeyCode >= 112 && iKeyCode <= 123)) {
        //ignore
    } else {
        //request suggestions from the suggestion provider with typeahead
        this.provider.requestSuggestions(this, true);
    }
};

/**
 * Hides the suggestion dropdown.
 * @scope private
 */
AutoSuggestControl.prototype.hideSuggestions = function () {
    this.layer.style.visibility = "hidden";
};

/**
 * Highlights the given node in the suggestions dropdown.
 * @scope private
 * @param oSuggestionNode The node representing a suggestion in the dropdown.
 */
AutoSuggestControl.prototype.highlightSuggestion = function (oSuggestionNode) {
    
    for (var i=0; i < this.layer.childNodes.length; i++) {
        var oNode = this.layer.childNodes[i];
        if (oNode == oSuggestionNode) {
            oNode.className = "current"
        } else if (oNode.className == "current") {
            oNode.className = "";
        }
    }
};

/**
 * Initializes the textbox with event handlers for
 * auto suggest functionality.
 * @scope private
 */
AutoSuggestControl.prototype.init = function () {

    //save a reference to this object
    var oThis = this;
    
    //assign the onkeyup event handler
    this.textbox.onkeyup = function (oEvent) {
    
        //check for the proper location of the event object
        if (!oEvent) {
            oEvent = window.event;
        }    
        
        //call the handleKeyUp() method with the event object
        oThis.handleKeyUp(oEvent);
    };
    
    //assign onkeydown event handler
    this.textbox.onkeydown = function (oEvent) {
    
        //check for the proper location of the event object
        if (!oEvent) {
            oEvent = window.event;
        }    
        
        //call the handleKeyDown() method with the event object
        oThis.handleKeyDown(oEvent);
    };
    
    //assign onblur event handler (hides suggestions)    
    this.textbox.onblur = function () {
        oThis.hideSuggestions();
    };
    
    //create the suggestions dropdown
    this.createDropDown();
};

/**
 * Highlights the next suggestion in the dropdown and
 * places the suggestion into the textbox.
 * @scope private
 */
AutoSuggestControl.prototype.nextSuggestion = function () {
    var cSuggestionNodes = this.layer.childNodes;

    if (cSuggestionNodes.length > 0 && this.cur < cSuggestionNodes.length-1) {
        var oNode = cSuggestionNodes[++this.cur];
        this.highlightSuggestion(oNode);
        this.textbox.value = oNode.firstChild.nodeValue; 
    }
};

/**
 * Highlights the previous suggestion in the dropdown and
 * places the suggestion into the textbox.
 * @scope private
 */
AutoSuggestControl.prototype.previousSuggestion = function () {
    var cSuggestionNodes = this.layer.childNodes;

    if (cSuggestionNodes.length > 0 && this.cur > 0) {
        var oNode = cSuggestionNodes[--this.cur];
        this.highlightSuggestion(oNode);
        this.textbox.value = oNode.firstChild.nodeValue;   
    }
};

/**
 * Selects a range of text in the textbox.
 * @scope public
 * @param iStart The start index (base 0) of the selection.
 * @param iLength The number of characters to select.
 */
AutoSuggestControl.prototype.selectRange = function (iStart /*:int*/, iLength /*:int*/) {

    //use text ranges for Internet Explorer
    if (this.textbox.createTextRange) {
        var oRange = this.textbox.createTextRange(); 
        oRange.moveStart("character", iStart); 
        oRange.moveEnd("character", iLength - this.textbox.value.length);      
        oRange.select();
        
    //use setSelectionRange() for Mozilla
    } else if (this.textbox.setSelectionRange) {
        this.textbox.setSelectionRange(iStart, iLength);
    }     

    //set focus back to the textbox
    this.textbox.focus();      
}; 

/**
 * Builds the suggestion layer contents, moves it into position,
 * and displays the layer.
 * @scope private
 * @param aSuggestions An array of suggestions for the control.
 */
AutoSuggestControl.prototype.showSuggestions = function (aSuggestions /*:Array*/) {
    
    var oDiv = null;
    this.layer.innerHTML = "";  //clear contents of the layer
    
    for (var i=0; i < aSuggestions.length; i++) {
        oDiv = document.createElement("div");
        oDiv.appendChild(document.createTextNode(aSuggestions[i]));
        this.layer.appendChild(oDiv);
    }
    
    this.layer.style.left = this.getLeft() + "px";
    this.layer.style.top = (this.getTop()+this.textbox.offsetHeight) + "px";
    this.layer.style.visibility = "visible";

};

/**
 * Inserts a suggestion into the textbox, highlighting the 
 * suggested part of the text.
 * @scope private
 * @param sSuggestion The suggestion for the textbox.
 */
AutoSuggestControl.prototype.typeAhead = function (sSuggestion /*:String*/) {

    //check for support of typeahead functionality
    if (this.textbox.createTextRange || this.textbox.setSelectionRange){
        var iLen = this.textbox.value.length; 
        this.textbox.value = sSuggestion; 
        this.selectRange(iLen, sSuggestion.length);
    }
};







/**
 * Provides suggestions for state names (USA).
 * @class
 * @scope public
 */
function StateSuggestions() {
    this.states = [
        "2182",
        "#1 Pho (Cleveland)",
        "100th Bomb Group",
        "1890 at the Arcade - Cleveland",
        "56 West ",
        "69 Taps",
        "806 Martini Bar",
        "87 West at Crocker Park",
        "A Café",
        "A Cookie and a Cupcake",
        "A Slice Above",
        "A Touch of Italy",
        "A&W",
        "ABC the Tavern",
        "Abuelos ",
        "Acacia Country Club",
        "Academy Tavern",
        "Acappella",
        "Acme - Hudson",
        "Adams Place",
        "Agave",
        "Agostinos",
        "AJ's Grille - Westlake",
        "Akira - Solon",
        "Al Manar",
        "Aladdin's Eatery",
        "Alaturka (new)",
        "Alberinis",
        "Aldo's Restaurant",
        "Alesci's",
        "Alessandro",
        "Alex Bevan (Willoughby Farmers Market)",
        "Alexander's - Lyndhurst",
        "Alexander's on Main / Alexandria's on Main",
        "Alexander's Restaurant & Billiards - North Olmsted",
        "Alfonsos Grille",
        "Alfredo's",
        "Ali-Baba's Restaurant",
        "Alicies - Eastlake",
        "Allegra Club - Euclid",
        "Al's Deli",
        "Alternative Café",
        "Alvies off the Square",
        "Amazing Wok",
        "Amazon Trail - Middleburg Hts.",
        "Amber Oaks Restaurant",
        "America Grille - Solon",
        "American Tavern",
        "Americano ",
        "Amir's",
        "AMP 150 ",
        "Anatolia ",
        "Anatomy",
        "Angela Mia's",
        "Angelina's",
        "Angelos",
        "Angie's - Auburn Twp.",
        "Angie's - North Royalton",
        "Angie's Soul Café",
        "Angry Trout Co. Fish & Steak House",
        "Anguilano's Italian Restaurant",
        "Annabelles",
        "Anni Chiu (chef, Sun Luck Garden)",
        "Antalya Red Square ",
        "Anthes",
        "Anthony Romano (chef, Player's on Madison)",
        "Anthony's",
        "Antonios Pizza",
        "Antonios Pizza - Parmatown",
        "Aoeshi",
        "Appetit",
        "Apple Farm Restaurant",
        "Applebees",
        "Arabian Oven",
        "Arabiattas",
        "Arabica Coffeehouse",
        "Arby's",
        "Archie's Lakeshore Bakery",
        "Arirang Garden",
        "Ari's Family Restaurant",
        "Aroma, Avon Lake",
        "Around Round - Parma",
        "Around the Corner Saloon & Café",
        "Arrabiatas",
        "Arthur's",
        "Artisan's Breadsmith",
        "Arturo's - North Olmsted",
        "Asia Court",
        "Asian Buffet (Elyria)",
        "Asian Chao",
        "Asian Delight",
        "Asian Grill Thai Restaurant (Cleveland)",
        "Asian Place",
        "Asian Wok",
        "Athen's Pizza",
        "Atlanta Bread Co.",
        "Atria",
        "Au Bon Pain - Cleveland",
        "Augie's Pizza",
        "Aurora Spirits",
        "Austin's Smokin' Steak House",
        "Avalon",
        "Avenue Bar & Grill",
        "Avon Gardens",
        "Axel and Harry's",
        "Azteca",
        "B Spot, The",
        "B&M BBQ",
        "Babushkas",
        "Babushka's Kitchen",
        "Bac",
        "Bahama Breeze",
        "Bainbridge Bakery",
        "Bainbridge Diner",
        "Baker's Bakery - Berea",
        "Bakers Square",
        "Balantine",
        "Balatons",
        "Banana Blossom",
        "Bangkok Gourmet - Akron",
        "Bar Cento",
        "Bar Louie",
        "Baraona's Baking Co.",
        "Barbarino Italian Restaurant",
        "Barley House ",
        "Barnacle Bill's Crab House",
        "Barristers Deli",
        "Barroco Grill (new)",
        "Basils",
        "Bass Lake Tavern",
        "Bavarian Deli",
        "Bavarian Pastry Shop",
        "Bay Diner",
        "Bay Harbor - Sandusky",
        "BD's Mongolian BBQ",
        "Beach Club Bistro",
        "Beach Club Grill ",
        "Beachcliff Tavern",
        "Beachclub Pizza Bistro",
        "Beachland Ballroom ",
        "Beachland Tavern",
        "Beachwood Place Eateries",
        "Beardens Restaurant - Rocky River",
        "Beau's Grill",
        "Beaus Tavern - Richfield",
        "Becker's Donuts",
        "Becky's",
        "Beer Engine",
        "Belacino's - Elyria / Sheffield",
        "Belgrade Garden's - Akron",
        "Bella Pizza",
        "Bella Renee",
        "Benihana",
        "Bennehana's",
        "Beritolli's",
        "Bertrams, Aurora, Bertram Inn, The Leopard Paws",
        "Biagio's Deli & Beverage",
        "Bialy's",
        "Bianca's - Brunswick",
        "Bier Markt",
        "Big Al's",
        "Big Boy Restaurant/Bob's Big Boy",
        "Big Daddy's Cheesesteaks",
        "Big Egg",
        "Big Eye Sushi",
        "Big Guys",
        "Big Mama's Soul Food Kitchen",
        "Billy's Martini Bar (Mentor)",
        "Bistro 185",
        "Bistro de Beaujolais",
        "Bistro on Lincoln Park",
        "Bistro on Main - Kent",
        "BJ's",
        "Black River Café",
        "Blackbird Baking Co. ",
        "Blakes",
        "Blasioles - Streetsboro",
        "Blazin Bills",
        "Blazing Bills",
        "Blimpy",
        "Blind Pig",
        "Blue Canyon",
        "Blue Moose - Parma",
        "Blue Onion",
        "Blue Pointe Grill",
        "Blue Tip Grille - Mentor",
        "Bo Long Restaurant",
        "Bo Loong",
        "Bob Evans",
        "Bob Golic’s Sports Bar & Grille ",
        "Bodega ",
        "Bogo Pizza",
        "Bombay Grille",
        "Bon 10 - Ravenna",
        "Bon Appetito",
        "Bonbon Pastry & Café (new)",
        "Bonefish",
        "Boneyard - Cleveland (ex-Fishbones)",
        "Bongiorna",
        "Bongirnos (Twinsburg)",
        "Bonnie's - N. Olmsted",
        "Bop Stop",
        "Borderline Café",
        "Borders",
        "Boston Market",
        "Bottoms Up",
        "Bounce/Union Station - Cleveland",
        "Bovalinos Italian Restaurant",
        "Brandt Evans (chef, Blue Canyon, Pura Vida)",
        "Brandywine Falls",
        "Brasa ",
        "Brasserie",
        "Bravo! Cucina Italiano",
        "Bread's Beyond",
        "Breadsmith",
        "Brennan's Colony",
        "Brennan's Fish House",
        "Brew Keeper",
        "Brew Kettle",
        "Brewed Awakenings",
        "Brewkeeper",
        "Bricco ",
        "Brick Oven",
        "Bridges",
        "Brielle's - Independence",
        "Brio Tuscan Grille",
        "Brooklyn Deli",
        "Brothers Lounge ",
        "Brown Bag - Hudson",
        "Brown Derby",
        "Brown's Stadium Restaurant",
        "Brueggers Bagels",
        "Brueners",
        "Bruno's Ristorante",
        "Bubba's Q",
        "Buca Di Beppo",
        "Bucci's",
        "Buckeye Brewing Company - Bedford",
        "Budapest Hungarian Restaurant",
        "Buehler's",
        "Buettern's Bakery - Euclid",
        "Buffalo Wings & Rings - Brunswick",
        "Bullies BBQ",
        "Bunker Hill Golf Course - Brunswick",
        "Burger King",
        "Burgers & Beer - Willoughby",
        "Burgers 2 Beer (new)",
        "Burkhardt Brewing - Medina",
        "Burntwood Tavern ",
        "Butch's BBQ (Parma)",
        "Buzz's - Sandusky",
        "BW-3",
        "Caballo Bayo",
        "Cabanas",
        "Cabin Club",
        "Cactus Joe's Fajitas - Lakewood",
        "Cactus Moon",
        "Caddy Shack",
        "Cadillac Ranch ",
        "Café 56",
        "Cafe Ah-Roma",
        "Café Cupachinos",
        "Café D'Oro",
        "Café Noir",
        "Cafe Roma",
        "Café Sausalito",
        "Café Stratos",
        "Café Tandoor",
        "Cafe Toscano",
        "Café Toscano ",
        "Cahoon Grill",
        "Cajun Dave's at Water Street Tavern",
        "Cake Royale ",
        "Calabra - Flats",
        "Calabria's Pizza",
        "Calas - Euclid",
        "California Pizza Kitchen",
        "Calla Club",
        "Canarys",
        "Cancun",
        "Cannery - Sagamore Hills",
        "Canterbury Golf Club",
        "Capers",
        "Capri",
        "Capsule - Lakewood",
        "Captain's Club - Eastlake",
        "Caribbean Flavor",
        "Caribou Coffee",
        "Carmella's - Euclid",
        "Carnegie Kitchen and Dining (new)",
        "Carrabba's Italian Grill - Westlake",
        "Carrie Cerano",
        "Caruso's",
        "Carvers",
        "Casa D'Anglo",
        "Casa del Rio - Wadsworth",
        "Casa Nova",
        "Catalano's (Stop-n-Shop - Hightland Hts.)",
        "Cebar's (Madison)",
        "Cedar Center Wines & Beverages",
        "Cedar GreenWine & Cheese",
        "Cedar Lee Pub & Grill",
        "Cedarland Restaurant & Deli",
        "Cellar Master",
        "Cellar Rats at Chalet Debonne",
        "Century Cleveland - Ritz-Carlton",
        "Chag Towne Café",
        "Chagrin Meats & Seafood",
        "Chagrin Tavern",
        "Chagrin Wine & Beverage",
        "Champps",
        "Chandler & Rudd",
        "Chardon BrewWorks & Eatery ",
        "Charm Thai ",
        "Checkers - Perry",
        "Cheers",
        "Cheese & Wine Unlimited - Cleveland",
        "Cheese Factory, Beachwood",
        "Cheese Haven",
        "Cheeseburger Cheeseburger - Broadview Hts",
        "Cheesecake Factory",
        "Chef Jose (Madison Country Club)",
        "Chens Garden",
        "Chesterland Tavern",
        "Chesters Legacy ",
        "Chez Francois",
        "Chez Mozell",
        "Chicago Deli - Downtown Cleveland",
        "Chicago Deli - Solon",
        "Chick Fil A",
        "Chik fil a",
        "Chilli's - N. Olmsted",
        "Chills Deli",
        "China Buffet",
        "China Gate",
        "China House (Bay Village)",
        "China Jade (Parma)",
        "China King",
        "China Mountain (Willowick)",
        "China One",
        "Chinato",
        "Chin's Pagoda (Willowick)",
        "Chipotle",
        "Chocolate Bar ",
        "Chowder House (Akron)",
        "Chuck's Wine & Cheese",
        "Church Street - Amherst",
        "Cibo",
        "Cicil B's - Brooklyn",
        "CiCi's Pizza",
        "Cilantro",
        "Cipriano's",
        "Circle Gourmet",
        "Circo/Zibibbo - Downtown",
        "Cirino's - Beachwood",
        "Citrus",
        "City - Tower City",
        "City Tap",
        "Civilization",
        "CJ's",
        "CK's Steakhouse - Concord",
        "Claddagh Irish Pub",
        "Clark Bar",
        "Claudette's - Westlake",
        "Clay Oven",
        "Clay Pot",
        "Cleat's - North Royalton",
        "Clementines",
        "Cleveland Art Museum",
        "Cleveland Chop House & Brewery",
        "Cleveland Deli",
        "Cleveland Grill",
        "Cleveland Pizza",
        "Cleveland Soul Café",
        "Clifton Diner - Cleveland",
        "Clifton Martini & Wine Bar ",
        "Close Quarters - Avon Lake",
        "Cloud Nine",
        "Club 75 - Cleveland",
        "Club House",
        "Club Isabella (new)",
        "Clyde's Bistro and Barroom",
        "Coccia House",
        "CoCo de Mariachi - Northfield",
        "Coffee Club - Broadview Hts",
        "Coffee N Creations",
        "Coffee Pot, The - Akron",
        "College Wine - Kent",
        "Colonial - Ridge & Pearl",
        "Colonial Beverage - Chesterland",
        "Colony Bar",
        "Colony Room at BW",
        "Colozzas Cake & Pastries",
        "Confectionaire",
        "Conneaut Cellars Winery",
        "Continental Cuisine - Fairlawn",
        "Convenient on Clifton",
        "Copper Top Bar & Grill",
        "Corbo's Dolceria",
        "Cork & Beans - Downtown",
        "Cork & Bottle",
        "Corks Wine Bar",
        "Corky and Lenny's",
        "Corky's Ribs",
        "Corleone's",
        "Corner Alley",
        "Cornerstone Brewery",
        "Corso's - North Olmsted",
        "Costco",
        "Country Buffet",
        "Country Grill - Cleveland",
        "Courtyard",
        "Cozumel - Broadview Hts.",
        "Cracker Barrel",
        "Crave",
        "Cravings",
        "Crazy Horse",
        "Creekside Restaurant",
        "Cristiano's - North Royalton",
        "Critics",
        "Crocker Park",
        "Crockers - Cuyahoga Falls",
        "Crooked River",
        "Crop Bistro",
        "Cropicana (new)",
        "Crostatas",
        "Crusin 50s Diner",
        "Cucina Pazzo - Twinsburg",
        "Cucina Rustica",
        "Cuff's",
        "Cuisine of India",
        "Culinaire - Westlake",
        "Cupachino's",
        "Curcio's - Lakewood",
        "Curly's Restaurant & Deli",
        "CYC, Cleveland Yacht Club",
        "Czech Inn",
        "D'Agnese",
        "Dairy Mart",
        "Dairy Queen",
        "Daishin",
        "D'Amico's",
        "Damons",
        "D'angelos",
        "Danny Boy's Pizza",
        "Danny Macs",
        "Danny's Deli",
        "Dans Dogs",
        "Dante",
        "Dante Boccuzzi (chef, Dante, Ginko",
        "Das Schnitzel",
        "Dave & Buster's - Westlake",
        "Dave's Cosmic Subs",
        "Dave's in Berea",
        "Dave's Supermarket",
        "Davis Bakery",
        "Davis Deli",
        "Deagan's Kitchen ",
        "Dean's Diner (Madison)",
        "Delaneys",
        "Deli on Rye",
        "Deli on the Vine",
        "Delmonico",
        "Delsangro's",
        "Dempsey's",
        "Denny's",
        "Der Braumeister",
        "Der Dutchman",
        "Dervish ",
        "Devitis Italian Market - Akron",
        "Dewey’s Pizza ",
        "Di Stefano's - Highland Hts",
        "Diamond Back Brewing",
        "Diamond Deli",
        "Diamond Grill",
        "Diana's",
        "DiBella's Subs",
        "Dick's Bakery - Berea",
        "Dick's Last Resort",
        "Didtka's",
        "DiFranco's - Twinsburg",
        "DiLullo's",
        "Dim and den Sum",
        "Dim Sum of Cleveland",
        "Dimitris",
        "Dina's Pizza & Pub",
        "Dining with Panos",
        "Dinks",
        "Dinner Bell - Painesville",
        "Dinos",
        "Diplomat",
        "Discover Zone",
        "Diso's",
        "Dive Bar",
        "Doc's Place",
        "Dog and Suds",
        "Dolce Wraps",
        "Dominic's - Westlake",
        "Domino's",
        "Don Camerone's - Painesville",
        "Don Gi's - Parma",
        "Don Pablos",
        "Don Palenio",
        "Don Panchos",
        "Don Quiote",
        "Don Ramons",
        "Don Tequila",
        "Donato's",
        "Donaushwaben  Ctr. - Olmsted Falls",
        "Don's Lighthouse",
        "Don's Pomeroy House",
        "Donte's Pizza",
        "Dontinos (Akron)",
        "Dottie's Diner / Sweet City Diner",
        "Double Dragon",
        "Doug Katz (chef, Fire food and drink)",
        "Dover Garden",
        "Downtown 140",
        "Draeger's",
        "Dragon - Brunswick",
        "Dragon Buffet",
        "Dragonfly Lounge",
        "Drink Café",
        "Dubrovnik Gardens",
        "Dunkin Donuts",
        "D'Vine Wine Bar",
        "East Coast Custard",
        "East Fourth Street",
        "East Side Grille",
        "Eastland Inn - Berea",
        "Eat & Park",
        "Eat at Joes",
        "Eddies Grill, Geneva on the Lake",
        "Eddie's Pizzeria Cerino ",
        "Eddy's Diner (Cuyahoga Falls)",
        "Edison's Next Door Deli",
        "Edisons Pub",
        "Edwardo",
        "Edward's Pizza - Westlake",
        "Einstein Brothers",
        "El Campesino - Streetsboro",
        "El Jalapeno ",
        "El Meson",
        "El Patron",
        "El Rincon - Brook Park",
        "El Rodeo",
        "El Taino",
        "El Tango Taqueria",
        "Elkefon Puertoriqueno - Lorain",
        "Ella Wee's",
        "Elmwood Bakery",
        "Elsners",
        "Embassy Suites Grill - Cleveland",
        "Empress Taytu",
        "Encore Bar & Grill - Berea",
        "Epiq Bistro & Wine Bar",
        "Eric Williams (chef, Momocho)",
        "Ericas in Doylestown",
        "Etna",
        "Euclid Tavern ",
        "Europa ",
        "Eve Lounge",
        "Executive Caterers",
        "Fagan's",
        "Fahrenheit",
        "Fairmount Circle Deli",
        "Fairmount Martini Bar",
        "Falafel Café",
        "Falls Family Restaurant",
        "Famiglia's Pizza - Beachwood Place",
        "Famous Daves",
        "Fanny's",
        "Farinacci - Northfield Ctr",
        "Farkas",
        "Farmer Boy - Lorain",
        "Fast Eddies",
        "Fat Billy's Grille & Pizzeria",
        "Fat Casual",
        "Fat Cats",
        "Fat Fish Blue",
        "Fatheads",
        "Felice's Urban Eatery ",
        "Ferrantes - Geneva",
        "Ferrara's Imported Foods",
        "Ferris SteakHouse",
        "Fiesta Jalapeno",
        "Fifth Avenue Deli",
        "Filipo's",
        "Finnamores - Richmond Hts",
        "Fioccas",
        "Fire Food and Drink",
        "First Watch",
        "Fishers Tavern",
        "Five Guys Burgers",
        "Flaming Ice Cube, The ",
        "Flannery's ",
        "Flat Iron - Aurora",
        "Flat Iron Café",
        "Flavors on the Vine - Eastlake",
        "Flemings ",
        "Flip Side",
        "Floodwaters - Valley View",
        "Flour (new)",
        "Flower on the Vine - Eastlake",
        "Flying Cranes ",
        "Flying Fig",
        "Flying Monkey",
        "Foster's - Hinckley",
        "Foundation Room (HOB)",
        "Fountain (new)",
        "Fowler's Mill - Chardon",
        "Fox & Hound",
        "Fragapane's ",
        "Francesca's - Broadview Hts.",
        "Frank & Ellies, Elyria",
        "Frankie & Pauly's",
        "Frankies Pizza - Westlake",
        "Frank's Bratwurst",
        "Frans",
        "Fratello's",
        "Freddie's - Cleveland",
        "Freds Diner",
        "French Coffee Shop",
        "French Creek Tavern, Avon",
        "French Quarter",
        "Fresco (Westlake)",
        "Fresh Market (shaker)",
        "Fresh Soup Co (solon)",
        "Friendly Inn",
        "Friendly's - Westlake",
        "Fujiyama ",
        "Fulton Avenue Café",
        "Fulton Bar & Grill - Ohio City",
        "Fusion - Cleveland (formerly Liquid)",
        "Galaxy - Wadsworth",
        "Gallucci's",
        "Gamekeeper's Lodge - Rocky River",
        "Gamekeepers Taverne",
        "Gartman's - Painsville",
        "Gasoline Alley",
        "Gates Mills Grille",
        "Gateway Sport's Bar",
        "Gavi's",
        "Gaylins Tavern",
        "Geisenhaus",
        "Gene's Place",
        "Gentile's",
        "Georges Kitchen",
        "Georgetown",
        "Geppetto's",
        "Geracis",
        "German House",
        "Geromes",
        "Gertrude Bakery",
        "Gertrude Bakery",
        "Giant Eagle",
        "Gilly's Not Just Donuts - Little Italy",
        "Gina's",
        "Ginko (new)",
        "Ginos Pizza (Akron)",
        "Ginza",
        "Gionino's",
        "Giorgio's - Beachwood",
        "Giovanni (Ristorante Giovanni's)",
        "Glass Garden II - Medina",
        "Glenda'a - Concord",
        "Gloria Jean's Coffee",
        "Godfrey's - North Ridgeville",
        "Gold Coast Restaurant & Deli",
        "Golden Coins",
        "Golden Coral - Fairlawn",
        "Golden Dragon - Mayfield",
        "Golden Gate - Lakewood",
        "Golden Gate Beverage",
        "Golden Harvest - Mentor",
        "Golden House - Cleveland",
        "Golden Mountain",
        "Goldie's",
        "Good Olde Daze - Parma",
        "Goodman's",
        "Goodtimes",
        "Gordon's - Fairport Harbor",
        "Gormet of China",
        "Gotcha Inn",
        "Gourmand's ",
        "Grace's ",
        "Grady's",
        "Grama's House",
        "Grampa's Cheese Farm",
        "Gran Fiesta",
        "Grand Market - Medina",
        "Grand River Cellars ",
        "Grand Stand",
        "Grande Michele's",
        "Grande's Restaurant",
        "Grapevine",
        "Grassies - Elyria",
        "Gray Wolf",
        "Great American Brewery",
        "Great Harvest Bread Co.",
        "Great Lakes Bakery - Hudson",
        "Great Lakes Brewing Company",
        "Great Lake's Chili",
        "Great Lakes Mall Food Court",
        "Great Lakes Rescue",
        "Great Lakes Tavern",
        "Great Scott's",
        "Great Taste Bakery - Lyndhurst",
        "Great Wall - Broadview Hts",
        "Great Wall of China",
        "Greek Express",
        "Greek Isles",
        "Greek Village Grille, The",
        "Green Island",
        "Greenhouse Tavern, The",
        "Grinders",
        "Grotto Wine Bar ",
        "Ground Round",
        "Grovewood Tavern",
        "Grubbs Burgers & Fries ",
        "Grumpy's - Tremont",
        "Grums",
        "Gruno's",
        "Guarino's",
        "Guido's Pizza",
        "Guiseppe's",
        "Gusto, Little Italy",
        "Gypsy Beans & Bakery, Cleveland",
        "Gyro Stand in Flats",
        "Ha-Ahn Rut, Cleveland",
        "Hamburger Station",
        "Hanni Food Mart",
        "Happy Buddha",
        "Happy Dog",
        "Happy Pizza",
        "Harbor Inn",
        "Harbor Inn - Portage Lakes ",
        "Harbor Master",
        "Hard Rock Café",
        "Harley - Rockside & I77",
        "Harmony Bar & Grille",
        "Harp",
        "Harpo's",
        "Harry Buffalo",
        "Harry's",
        "Hartville Kitchen",
        "Harvest Bread Company",
        "Harvest Café",
        "Harvest Kitchen & Lounge (new",
        "Harvest Wheat - Mentor",
        "Harvey's - Cleveland Hts.",
        "Hazel - Elyria",
        "HBT Club & Party Center - Maple Hts.",
        "Heart and Soul",
        "Heather Haviland (chef, Lucky's)",
        "Heck's",
        "Heggys Nut Shoppe",
        "Heimutland - Brunswick",
        "Heinen's",
        "Heisley Raquet Club",
        "Helen & Kal's Kitchen (Avon)",
        "Hellriegals",
        "Heni's",
        "Henry Wahners (Kent)",
        "Herbs",
        "Herbs on the Lake",
        "Hi Majestys on the Square",
        "Hibachi",
        "Hibachi - Cuyahoga Falls",
        "Hickerson's",
        "Hickory Lake Tavern",
        "High Point Beverage",
        "High Thai'd Café",
        "Highlander",
        "Hillmark",
        "Hilltopper",
        "Hilton Beachwood",
        "Hinckley Inn - Hinckley",
        "Hiroshi's Pub ",
        "Ho Wah",
        "Ho Wood",
        "Hoggy's - Valley View",
        "Homestand Restaurant",
        "Hometown Buffet",
        "Honey Hut",
        "Hong To",
        "Hong Wa",
        "Hooley House",
        "Hop Hing - North Royalton",
        "Hoppin Frog",
        "Horizon's at the Lodge of Geneva",
        "Hot Dog Diner",
        "Hot Dog Express - Cleveland Hts.",
        "Hot Dog Heaven",
        "Hot Dog Inn",
        "Hot Sauce Williams",
        "Houlihan's",
        "House of Blues",
        "House of Brews",
        "House of Hunan",
        "Howl at the Moon",
        "Hudson Wine & Spirits",
        "Hunan by the Falls",
        "Hunan East",
        "Hunan Express",
        "Hunan Gourmet",
        "Hunan of Chesterland",
        "Hunan of Lyndhurst",
        "Hunan of Solon",
        "Hunan on coventry",
        "Hunan Palace",
        "Hundred Flowers",
        "Hung To - Willoughby",
        "Huntington's",
        "Huron Deck - Cleveland",
        "Huron Deli",
        "Hyde Park Grill - Hyde Park Chop House",
        "Iacomini's",
        "Ianazone's Homemade Pizza",
        "Ido Café",
        "Iggy's - Lakewood",
        "IHOP",
        "Il Bacio - Cleveland",
        "Imagemaze",
        "Imperial Dragon",
        "Imperial Wok",
        "India Garden",
        "Indian Café - Brook Park",
        "Indian Cuisine - North Olmsted",
        "Indian Delight",
        "Indian Flame",
        "Indigo Imp",
        "Indigo Indian Bistro",
        "Inferno Gourmet Burger Bar (new)",
        "Inn at Chippewa Lakes",
        "Inn Between Lounge",
        "Inn on Coventry",
        "Irene Dever's (West Side Market)",
        "Ironwood",
        "Isabella's - North Olmsted",
        "Istanbul Turkish Grill",
        "Italia Amherst (new)",
        "Italian Creations",
        "Italian Village",
        "It's Greek to You",
        "It's It Deli",
        "Ivan's ",
        "Izzy's Lunchbox",
        "J Bella ",
        "J. Alexanders",
        "J. Pistone Market - Shaker",
        "Jackelope - Lorain",
        "Jackie Chan's",
        "Jack's Deli",
        "Jack's Steakhouse",
        "Jade Tree",
        "Jaipur Junction",
        "Jake's Deli",
        "Jalapeno Loco",
        "James Dominic's",
        "Jammy Buggars (new)",
        "Java Zone",
        "JB Milano's",
        "Jeepers - N. Randall",
        "Jeff Jarrett (chef, Amp 150)",
        "Jekyll's Kitchen ",
        "Jennifers",
        "Jeremiah Junction",
        "Jets",
        "Jigsaw Saloon - Parma",
        "Jilllian's",
        "Jimmy Daddona's",
        "Jimmy Johns",
        "Jimmy O'Neal's Tavern - Cleveland Hts.",
        "Jims Open Kitchen",
        "Jo Jos",
        "Joe's Crab Shack",
        "Joe's Deli",
        "Joey's",
        "Joey's Italian Grille (Madison)",
        "John Crist Winery",
        "John D'Amico (chef, Chez Francois) ",
        "John Kolar (chef, Thyme)",
        "John Palmer's",
        "John Q's",
        "Johnnies Grill",
        "Johnny",
        "Johnny Malloy's",
        "Johnny Mango",
        "Johnny Rockets",
        "Johnny's Bar (on Fulton)",
        "Johnny's Downtown",
        "John's Diner",
        "Jonathan Bennett (chef, Moxie, Red)",
        "Jonathon Sawyer (chef, Greenhouse Tavern, Noodlecat)",
        "Jones Co.",
        "Jordans",
        "Joseph Beth aka Bronte",
        "JP's",
        "JTs Diner",
        "Juji's",
        "Julian's - Cleveland",
        "Julian's - Willoughby",
        "Jumbo Buffet - Elyria",
        "Just Like Mama's - Cleveland",
        "Justice Center Stand",
        "K&K - Portage",
        "K&K Mart",
        "Kabob House",
        "Kaleidoscope - Richfield",
        "Kan Zaman",
        "Kanai",
        "Karen Small (chef, Flying Fig)",
        "Karl's Inn of the Barristers",
        "Kasai",
        "Kashmir Palace - Westlake",
        "Kathy's Kolacke Shop",
        "KC Four Corners Café",
        "KD's Pizza - Ashland",
        "Ken Stewart's Grill - Akron",
        "Ken Stewart's Lodge - Bath",
        "Kenilworth Tavern - Lakewood",
        "Kent Cheese House",
        "Kepner's - Hudson",
        "Key W. Kool's",
        "Kim Se",
        "Kim Wah",
        "Kimo's Sushi Shop",
        "Kims Barbecue",
        "King Wah",
        "Kings Cantina",
        "Kirtland Tavern",
        "Knucklehead's - Parma",
        "Koko Bakery",
        "Kolozza's - Parma",
        "Korean House",
        "Kosta's",
        "Koukias - Lakewood",
        "Krispy Kreme",
        "Kristy's Tavern - Euclid",
        "Kudrowski's - Amherst",
        "Kuhars Restaurant",
        "La Bodega",
        "La Cago - Coventry",
        "La Casita - Solon",
        "La Cave du Vin",
        "La Dolce Vita",
        "La Fiesta",
        "La Pizzeria",
        "La Strada ",
        "La Tortilla Feliz",
        "LaBella Cupcakes",
        "Lago",
        "Lake House Inn & Winery",
        "Lake Road Market (Avon Lake)",
        "Lakehouse Winery, Geneva",
        "Lakeshore Eatery",
        "L'Albatros Brasserie and Bar",
        "Lancer Steakhouse",
        "Lannings - Akron",
        "Larchmere Tavern",
        "Larry's - Akron",
        "Las Cazuelas, Avon Lake",
        "Last Chance",
        "Latin Corner",
        "Latitude 41 n",
        "Lava Lounge",
        "Lax & Mandel's ",
        "Le Bistro du Beaujolais",
        "Le Bristro du Beaujolais ",
        "Legends - Middleburg Hts.",
        "Lehman's",
        "Lemon Grass",
        "Lenny's Deli - Avon Lake",
        "Li Wah",
        "Liberty Street Brewing Co.",
        "Light Bistro - Ohio City",
        "Lighthouse",
        "Lilly Handmade Chocolates ",
        "Lincoln Park Pub",
        "Liquid Planet",
        "Little Bar & Grille - Cleveland",
        "Little Budapest - Westlake",
        "Little Damascus",
        "Little Joe's - Cuyahoga Falls",
        "Little Orchid - Chagrin Falls",
        "Little Polish Diner",
        "Local Heroes - Cleveland",
        "Lockkeepers",
        "Lockview, The (Akron) ",
        "Lola Bistro",
        "Lolita",
        "London Pickle Works",
        "Lone Star",
        "Lone Tree Tavern, The ",
        "Longhorn Steakhouse",
        "Longo's Pizza",
        "Lopez Southwestern Food Club",
        "Lorenzos Pizza",
        "Los Compadres (Madison)",
        "Los Gallos in Bedford",
        "Los Habaneros Mexican Restaurant ",
        "Lou & Eddie's",
        "Louie's Bar - Akron",
        "Luchita's Mexican Restaurant",
        "Luciano's Ristorante",
        "Lucios",
        "Lucky's ",
        "Luigi's - Akron",
        "Lulu's Steak and Taphouse",
        "Luna's - Parma Hts",
        "Lure Bistro",
        "Luries",
        "Luxe ",
        "Lydia's Hunarian Strudel Shop",
        "Macarone's - Strongsville",
        "Macaroni Grille",
        "Mad Cactus",
        "Mad Greek",
        "Mad Max",
        "Madd Chef",
        "Madison Country Club",
        "Maggianos (Beachwood)",
        "Maha Falafel (West Side Market)",
        "Mahles ",
        "Main Street Brewery",
        "Main Street Café",
        "Main Street Cupcakes",
        "Main Wok",
        "Mainland China",
        "Major Hoopples",
        "Malley's",
        "Mallorca",
        "Malloy's",
        "Mama Jos (Solon)",
        "Mama Roberto's",
        "Mama Rosa's",
        "Mama Santa's Little Italy",
        "Mana Bakery",
        "Mandarin - Oberlin",
        "Mandarin Seafood Buffet (Twinsburg)",
        "Maneros",
        "Mangia Mangia",
        "Manhattan Deli",
        "Map Room",
        "Maple Leafe Restaurant",
        "Mapleside Apple Farm Restaurant",
        "Marabella",
        "Marbella",
        "Marcela's Pizza - Parma",
        "Marcelita's - Hudson",
        "Marconi's",
        "Marco's Pizza",
        "Marcs No Name",
        "Mardi Gras",
        "Mari Food Court",
        "Mariachi Locos - Green",
        "Maria's - Euclid",
        "Marie's - Lakewood",
        "Marie's - Wadsworth",
        "Marinko Firehouse",
        "Mario Fazio's",
        "Mario's International Inn - Aurora",
        "Mark Pi's",
        "Market ",
        "Market at the Fig",
        "Market Avenue Wine Bar",
        "Market Café ",
        "Market Garden Brewery & Distillery (new)",
        "Market Square Bistro - Bainbridge",
        "Marko's",
        "Marlin Kaplan (chef, Luxe, Dragonfly) ",
        "Marotta's",
        "Marriannes",
        "Mars Bar",
        "Martas",
        "Martini's Restaurant",
        "Martinos",
        "Martin's Corners",
        "Martin's Deli",
        "Mary Coyle's",
        "Mary Yoder's - Middlefield",
        "Massimo Da Milano's",
        "Master Pizza",
        "Match Works Tavern (new)",
        "Matsu - Shaker Hts",
        "Matt Mathlage (chef, Light Bistro)",
        "Mavis Winkles",
        "Max & Erma's",
        "Max Doogan's",
        "Maxi's - Little Italy",
        "Maya (Bagley Road)",
        "Mazzone & Sons Bakery",
        "McCarthy's - Lakewood",
        "McCormick & Schmick's - Beachwood",
        "McDonalds",
        "Medina Steakhouse & Saloon",
        "Meister's Cheese",
        "Mekong River ",
        "Melange",
        "Melt Bar & Grilled",
        "Melting Pot",
        "Memphis Bakery",
        "Menu6 ",
        "Merchants Vineyards",
        "Merry Arts",
        "MetroHealth Hospital Café",
        "Mexican Village",
        "Mezza",
        "Mi Pollo",
        "Mi Pueblo Taqueria",
        "Mia Bella ",
        "Michael Angelo's - Broadview Hts",
        "Michael Symon (chef)",
        "Michael's Bakery - Brooklyn",
        "Michael's Bar & Grill - Richmond Hts",
        "Michael's Family Restaurant - Rocky River",
        "Michael's Restaurant",
        "Michal's Am - Akron",
        "Michelangelos",
        "Mick's Tavern",
        "Middle East Grille ",
        "Middlefield Cheese Factory",
        "Midway O'Boy",
        "Migelito's - Mayfield",
        "Mike's Bar and Grill (Berea) ",
        "Mike's Pastry & Deli - Cleveland",
        "Miles Road Farmers Market",
        "Millside Grill/Mill Road Grill",
        "Minerva",
        "Minh Anh",
        "Minotti's",
        "Mister Brisket",
        "Mitchell's Fish Market (Cameron Mitchell)",
        "Mitchell's Ice Cream",
        "Mitchell's Tavern - Westlake",
        "Mizu Sushi",
        "Moe's - Akron",
        "Moko Coffee",
        "Molinari's",
        "Molly McGhees",
        "Momma Santo - Middleburg Heights ",
        "Momocho",
        "Mom's Deli - North Royalton",
        "Mon Ami",
        "Moose O'Malley's",
        "Moosehead Saloon",
        "Moriarty's Bar",
        "Morton's",
        "Moxie, the Restaurant",
        "Mr. G's Pizza - Euclid",
        "Mr. Hero's",
        "Mr. P's - Painesville",
        "Mr. Seay's - Cleveland",
        "Mrs. D's - Mentor on the Lake",
        "Muldoon's Saloon",
        "Mulligans",
        "Murphy's - Chesterland",
        "Muse",
        "Musketeer Bar and Grill",
        "Mussarins",
        "Mustard Seed Market & Café",
        "Mutt & Jeff's",
        "My Father's",
        "My Friends",
        "My Friend's Deli",
        "My Kitchen (Beachwood)",
        "My Place",
        "Myxx (new)",
        "Naks",
        "Nam Wah",
        "Napoleans",
        "Narducci's",
        "Nate's Deli - Fairview Park",
        "Nate's Deli - Ohio City",
        "Nature's Bin",
        "Nauti Mermaid",
        "Nautica Queen",
        "Naya Bistro and Lounge",
        "Nemitz Painesville",
        "Nemo Grill - Avon",
        "New Era",
        "New Ming / Ming Home",
        "New York Deli",
        "New York Deli & Grill - Chardon",
        "Nick & Tony's Italian Chophouse - Cleveland",
        "Nighttown",
        "Niko's on Detroit",
        "Ninni's",
        "Nino's ",
        "Noble House",
        "Nobu",
        "Noce",
        "Noodlecat (new)",
        "Noosa Bistro",
        "Nordstrom Café",
        "North Coast Wine & Bar",
        "North End Market - Hudson",
        "North Olmsted Party Center",
        "Northfield Inn",
        "Northfield Park",
        "Nuevo Acapulco",
        "Nunzio's",
        "Oaks Lodge",
        "Oasis - Cleveland",
        "Oasis at the Art Museum",
        "Oberlin Inn",
        "O'Brien's",
        "Oggi Restaurant",
        "O'Hara's - Brunswick",
        "Ohio City Burrito ",
        "Ohio City Pizza",
        "Ohio Liquor",
        "O'Kelly's - University Hts",
        "Old Angle",
        "Old Carolina BBQ (Canton)",
        "Old Harbor Inn (Akron)",
        "Old Prague",
        "Old Towne Pizza",
        "Old Whedon Grill",
        "Old Wine Shop, Olmsted Falls",
        "Old World Deli",
        "Olive Garden",
        "Olivor Twist ",
        "O'Malley's - Rockcliffe",
        "On Tap - Cuyahoga Falls",
        "On the Rise - Cleveland Hts",
        "One Red Door ",
        "Orale",
        "Orale Kitchen (new)",
        "O'Reilly's - University Hts.",
        "Organic Energy",
        "Oriental Palace",
        "Orlando Bread Co.",
        "O'Ryan's",
        "Osteria - Cleveland",
        "Otani",
        "Otto Mosers",
        "Oui Oui",
        "Outback",
        "Outrageous Endings - Mayfield Hts",
        "Pacers",
        "Pacific East",
        "Pacific Pearl ",
        "Pad Thai",
        "Paddy's Pub",
        "Paganini, Loretta (chef)",
        "Paladar",
        "Palmer's - Strongsville",
        "Palookaville Chili (new)",
        "Panda Buffet",
        "Panda Wok",
        "Panera",
        "Panini",
        "Papa Gyro",
        "Papa Joe's",
        "Papa John's Pizza",
        "Papa Nicks",
        "Pappou Café",
        "Paragon (new)",
        "Paragons",
        "Parallax",
        "Park Gril",
        "Parkview Nite Club",
        "Parma Tavern",
        "Parnell's - Cleveland Hts.",
        "Pasha Mediterranean Grill - Solon",
        "Pasta Lears",
        "Pat Joyce Tavern",
        "Pat O'Brien's of Landerwood",
        "Patino's Pizza",
        "Patricks Pizza",
        "Pat's Restaurant",
        "Patterson Fruit Farm",
        "Pattisserii Barogue",
        "Paul's - Elyria",
        "Paws - Aurora",
        "Pazzo's - Broadview Hts",
        "Pear Road Tavern",
        "Pearl of Hunan - Stow",
        "Pearl of the Orient",
        "Peking Gourmet",
        "Pelicano's",
        "Pellagrino's",
        "Penn Station",
        "Peppermint Thai (Pepper Pike) ",
        "Peppers - Lakewood",
        "Perkins",
        "Perrenial U",
        "Perry Family Restaurant",
        "Pesano's",
        "Pete Joyce (chef, Bistro on Lincoln Park) ",
        "Peter Shear's - Canton",
        "Peter's - Garfield Hts",
        "Pete's Corner Grille - Old Brooklyn",
        "Petie's ",
        "Pettis Pizza",
        "PF Chang's",
        "Phil Style",
        "Phil the Fire (new)",
        "Phnom Phen",
        "Pho Hoa",
        "Phoenix Buffet - Mentor",
        "Phoenix Coffee",
        "Piatto",
        "Piatto - Akron",
        "Picasso",
        "Pickle Bills",
        "Pickle Works",
        "Pickwick & Frolic",
        "Pier W",
        "Pierogi Palace",
        "Pierres Ice Cream",
        "Pimentos",
        "Pincus Bakery",
        "Pine Garden - Lorain",
        "Pine Lake Trout Club",
        "Pinetree - Medina",
        "Pipers 3",
        "Pizza by Robert",
        "Pizza Connection",
        "Pizza Cutter - Avon Lake",
        "Pizza House",
        "Pizza Hut",
        "Pizza Market - Mentor",
        "Pizza Pan",
        "Pizza Parlor - Painesville",
        "Pizza Roma",
        "Pizza's - Mayfield",
        "Pizzazz",
        "PJ McIntyres",
        "PJ's Colonial Arcade",
        "Place to Be, The",
        "Players on Madison",
        "Players Pasta and Pizza",
        "Playmakers",
        "Plum Creek Tavern",
        "Po Folks",
        "Polaris Restaurant",
        "Ponderosa",
        "Poor Boys - West Side Market",
        "Popeye's Soul Food",
        "Poppy's Pizza",
        "Porceilli's",
        "Portofino",
        "Posh Pierogies",
        "Potpourri",
        "Pounders - Elyria",
        "Power House",
        "Pranzo",
        "Premura's - Parma",
        "Prestis",
        "Prestos (Fairview)",
        "Prime Rib Steakhouse",
        "Primo - Mentor",
        "Primo Vino - Little Italy",
        "Primo's Deli",
        "Primoz Pizza",
        "Prosperity",
        "Pub in Hudson",
        "Pub Rocky River, The",
        "Pucci's in the Valley - Akron",
        "Pufferbelly",
        "Pug Mahones",
        "Punderson Lodge",
        "Pura Vida (new)",
        "Puritan Bakery",
        "Pyramid",
        "Qdoba",
        "Quail Hollow",
        "Quaker Steak & Lube - Valley View",
        "Quarryman Taverne",
        "Que Tal",
        "Quince",
        "Quinn's",
        "Quizno's",
        "R.J.'s - Kirtland",
        "Rachel's Caribbean - South Euclid",
        "Racicis",
        "Radisson Grill",
        "Rag's Wine & Beverage - Lorain",
        "Raintree",
        "Raisen & Glazes, Bainbridge",
        "Raj Mahal (Akron)",
        "Rally Burger",
        "Randazzo's Pizzeria - Rocky River",
        "Rascal House",
        "Ray's - Kent",
        "Razzle's",
        "Red Back Jack's",
        "Red Chimney",
        "Red Clay - Vermilion",
        "Red Hawk",
        "Red Lantern",
        "Red Lobster",
        "Red Robin",
        "Red the Steakhouse",
        "Red Tomato",
        "Reddi's - Twinsburg",
        "Reddstone",
        "Reems",
        "Regency",
        "Reggie's - Aurora",
        "Reinecker's Bakery",
        "Renaisannce",
        "Rescue Lodge",
        "Reserve Inn - Hudson",
        "Reserve Square",
        "Restaurant Italia (new)",
        "Rhinos",
        "Richie Chan's",
        "Rick's Café",
        "Rider's Inn",
        "Ridgewood Inn - Parma",
        "Rincon Criollo",
        "Ring Neck",
        "Ringneck Brewing",
        "Rio Bravo",
        "Rio Grande",
        "Ripper Owl",
        "Rita's (Pastry Shop, Brunswick)",
        "Rito's Bakery",
        "River City Brew",
        "Riverfront Restaurant Sheraton",
        "Rivers Edge",
        "Riverstone Tavern & Bistro ",
        "Riverview Room - Ritz Carlton",
        "Riverwalk Café",
        "Riverwood Café - Lakewood",
        "Riverwood Vineyard",
        "Rizzi's - Akron",
        "RJ Boland's Restaurant & American Saloon",
        "Roadhouse",
        "Rocco Whalen (chef, Fahrenheit)",
        "Roccos Pizza",
        "Rock Cliff - Rocky River",
        "Rockbottom Restaurant & Brewery",
        "Rockefeller's (new)",
        "Rocker's Café - North Olmsted",
        "Rockne's - Kent",
        "Rocky River Brewing Co.",
        "Roio Café - Avon Lake",
        "Roman Fountain - Lakewood",
        "Romeo's",
        "Romito's",
        "Room 24 - Willoughby",
        "Roosters",
        "Root Café",
        "Rosati's Frozen Custard",
        "Rose's Run - Stow",
        "Rosewood Grill ",
        "Rosie's - North Olmsted",
        "Rosita's - Mentor",
        "Rosy's - Chagrin Falls",
        "Royal Buffet (Cuyahoga Falls)",
        "Royal Park Fine Wines",
        "Royal Pizza",
        "Royal Vine",
        "Royal Wine Shop - North Royalton",
        "Rozi's Wine",
        "Ruby Tuesday's",
        "Ruchama's",
        "Rudy's - Brimfield",
        "Rudy's Strudel",
        "Rush Hour - Twinsburg",
        "Rush Inn",
        "Russian Tea Room - Lyndhurst",
        "Russo's",
        "Rustic",
        "Rusty Bucket",
        "Ruthie and Moe's",
        "Ruth's Chris Steakhouse",
        "Ryno's",
        "Sabarros - Elyria",
        "Saffron Patch",
        "Sage Bistro - Tremont",
        "Sai Woo",
        "Saigon ",
        "Sakkio - Mentor",
        "Sakura",
        "Sal & Al's Diner - Amherst",
        "Sal & Angelo's - Cleveland Hts",
        "Salmon Daves",
        "Sammi's - North Olmsted",
        "Sammy's",
        "Samosky Bakery - Parma Hts",
        "Samosky Pizza",
        "Sam's Club",
        "Sam's Place",
        "Samurai",
        "San Francisco Oven - Willoughby",
        "Sanctuary",
        "Sand's Blue Line (aka Eddie Sand's Blue Line Café')",
        "Sandwich D'Lite",
        "Sandy's Frozen Whip",
        "Sans Souci",
        "Santo Suosso",
        "Santos",
        "Sapore",
        "Sarahs Winery",
        "Saras Place by Gavis ",
        "Sarava",
        "Sarducci's - Eastlake",
        "Sasa Matsu",
        "Savannah - Westlake",
        "Sawmill - Huron",
        "Sawmill Creek",
        "Saywell's Bakery - Chesterland",
        "SB Eighty-one",
        "Schlotsky's Deli",
        "Schnitzel Haus",
        "Schwebel Room",
        "Scoops Ice Cream - Tremont",
        "Scooter's Dawg House (Mentor)",
        "Scorchers",
        "Scoreboard",
        "Scotti's - Euclid",
        "Scott's - E. 185th Street",
        "Scoundrels ",
        "Seagrams",
        "Sean's Sandwich Shop",
        "Seasons - Bratenahl",
        "Seaway Bar - Wickliffe",
        "Seballo's Bakery - Ohio City",
        "Seniorita Bonita's",
        "Seoul Garden",
        "Seoul Hot Pot - Cleveland",
        "Sergio's (University Circle)",
        "Sergio's Sarava",
        "Severance Restaurant - University Circle",
        "Shaker Deli",
        "Shaker Imports",
        "Shaker Square Beverage",
        "Shanghi",
        "Sharky's - Fairport Harbor",
        "Shawn Monday (chef, One Red Door)",
        "Sheraton - Cuyahoga Falls",
        "Shinano",
        "Shiners - Vermilion",
        "Shinto",
        "Shisler's Cheese House",
        "Shooters",
        "Shoreby Club",
        "Shoregate - Willowick",
        "Shticks",
        "Shuhei",
        "Shula Two's - Independence",
        "Si Senor",
        "Siam Café",
        "Siamones Thai (Akron)",
        "Silks - Northfield",
        "Silver Quill",
        "Silverstros - Painesville",
        "Simone's",
        "Simons - Brecksville",
        "Sin Mun Bay",
        "Sirna's / Sirno's - Aurora",
        "Sitoosh",
        "Sittoos",
        "Sixth City Diner (new)",
        "Skinners - Willoughby",
        "Sky Bread Co.",
        "Sky Way",
        "Skyline Chili",
        "Skyway - Akron",
        "Slainte Irish Pub - Avon Lake",
        "Slam Jams",
        "Slice Above - Strongsville",
        "Slice of Cleveland - Mentor",
        "Slices",
        "Slim n Chubbies",
        "Slyman's",
        "Smitty's Bar",
        "Smoke 'em Joe's",
        "Smokey Bones",
        "Smokey Joes",
        "Snapps",
        "Snickers",
        "Sokolowski's - University Inn",
        "Solon Wine Merchant",
        "Sorrento's - Elyria",
        "Soul Beautiful Café (Cleveland) ",
        "Soul Café",
        "Soul Vegetarian - Cleveland Hts",
        "Soup Pot",
        "Souper Market",
        "South China Wok",
        "South Side",
        "Southeast",
        "Southland Beverage",
        "Southwest Café",
        "Spaghetti Warehouse",
        "Spanish Connection - Akron",
        "Spanish Tavern",
        "Spanos Bakery (west side market)",
        "Spats",
        "Speakeasy",
        "Spectators",
        "Sports Park - Willoughby",
        "Spot Deli",
        "Spoto's",
        "Spring Hill Bakery (Geneva)",
        "Spunkmeyer's Pub - Avon Lake",
        "Spy Bar",
        "Stadium Grill",
        "Stampers",
        "Stancato's",
        "Stan's Northfield Bakery",
        "Star - Cleveland",
        "Starbucks",
        "State Road Beverage",
        "State Road Meats",
        "State Street Café - Painesville",
        "Station 43",
        "Steak Escape",
        "Steak on a Stone",
        "Steak Shop - Medina",
        "Steakhouse - Cleveland",
        "Steak-n-Shake",
        "Stella's - Avon Lake",
        "Sterles Slovenian Country House / Frank's / Slovenian Country House",
        "Steve Schimoler (chef, Crop Bistro)",
        "Stevenson's Bar",
        "Steve's Dakota Grill",
        "Steve's Gyros, West Side Market",
        "Steves Lunch",
        "Steve's Place",
        "Stino da Napoli",
        "Stir Crazy",
        "Stix",
        "Stone Hearth Pub / Glidden House",
        "Stone Mad ",
        "Stone Oven",
        "Stonehouse Grill",
        "Stouffer Tower City Plaza",
        "Street Treats",
        "Strip Steakhouse",
        "Strongsville Deli",
        "Subway",
        "Sugar Creek - Sheffield",
        "Sulivan's",
        "Sullivans",
        "Summer Place",
        "Sumo Boy (Mentor)",
        "Sun Luck East Chinese Restaurant",
        "Sun Luck Garden",
        "Sun Sun",
        "Super International Fubbet - Brooklyn",
        "Super King Buffet - Elyria",
        "Super Seafood Buffet (Mentor on the Lake)",
        "Superior Deli, Cleveland",
        "Superior Pho",
        "Superior Resturant",
        "Sushi 86",
        "Sushi Katsu - Akron",
        "Sushi Rock - Cleveland",
        "Sussex Fish",
        "Susys Soups",
        "Sutters",
        "Sweet Arts",
        "Sweet Basil",
        "Sweet Lucy's",
        "Sweet Mango, Strongsville",
        "Sweet Melissa",
        "Sweet Mosaic",
        "Sweet Moses",
        "Sweet Pea Café",
        "Sweet Spot, The",
        "Sweetwater Landing",
        "Swenson's Drive-In",
        "Swiss Bakery / Zoss - The Swiss Baker",
        "Sylvestro's",
        "Szechwan Garden Restaurant",
        "Szechwan House",
        "Taber's Thyme",
        "Table 45",
        "Taco Bell",
        "Taco Tonto's",
        "Tais, Parma",
        "Taj Indian",
        "Taj Mahal - Cuyaholga Falls",
        "Take 5",
        "Take a Bite",
        "Tal's - Parma",
        "Tangiers",
        "Tani's Place",
        "Tap House",
        "Tartine ",
        "Taste ",
        "Taste Buds",
        "Taste of China",
        "Taste of Europe",
        "Tastings Bread",
        "Tasty Jones ",
        "Tasty Pizza",
        "Tavern Co.",
        "Tavern on the Hill",
        "Tavoli",
        "Tay Do",
        "Taza",
        "Tea Room - Milan",
        "Teahouse Noodles",
        "Teaka Noodles & Juice",
        "Ten Palmer Place - Painesville",
        "Tequila Panchas",
        "Teresa",
        "Terrance Club",
        "Texas Roadhouse",
        "TGI Fridays ",
        "Thai Gourmet",
        "Thai Kitchen",
        "Thai Orchid - Mentor",
        "Thai Spice",
        "The Algera Tea House",
        "The Annex",
        "The Avenue",
        "The Barn",
        "The Basement",
        "The Boulevard",
        "The Breadmaker - Fairlawn",
        "The Cabin",
        "The Café in Stow",
        "The Cheese Shop - Middlefield",
        "The Club - Cleveland Marriott",
        "The Coffee Bean - Great Northern, N. Olmsted",
        "The Diner",
        "The Dolphin (Northfield)",
        "The Eatery - Tower City",
        "The Feve",
        "The Firehouse (Willoughby)",
        "The Galley",
        "The Gourmet - Stow",
        "The Great Eastsider - Willoughby",
        "The Greek Store - Cleveland",
        "The Greenhouse Tavern ",
        "The Grill (at Inter Continental)",
        "The Grill (Brunswick)",
        "The Grille - Garfield Heights",
        "The Harp",
        "The Humidor",
        "The Lockview (Akron) ",
        "The Loft",
        "The Log Cabin - Willowick",
        "The Lone Tree Tavern ",
        "The Loose Moose",
        "The Mediterranean - Cleveland",
        "The Oaks",
        "The Old Stand - Lakewood",
        "The Pancake House",
        "The Pit (Beachwood)",
        "The Place to Be",
        "The Popcorn Shop",
        "The Pub Rocky River",
        "The Public House",
        "The Pyramid",
        "The Screaming Rooster",
        "The Shore",
        "The Sportsman - Cleveland",
        "The Stables",
        "The Station - Berea",
        "The Sweet Spot",
        "The Tap Room",
        "The Third Place",
        "The Trout",
        "The Viking",
        "The Warehouse",
        "The Whip",
        "The Wine Barrel - Mayfield",
        "The Wine Cellar",
        "The Wine Room",
        "The Woods",
        "The Wooster Inn",
        "The Wright Place",
        "Thee Olde Factory",
        "Theory",
        "Theo's",
        "Theresa's in Avon",
        "Thirsty Dog - Akron",
        "Thirsty Parrot",
        "Thistledown",
        "Thumbs Up Deli",
        "Thyme (John Kolar)",
        "Tick Tock Tavern",
        "Ticket to Tokyo",
        "Tiffany's Pastry - Akron",
        "Timberfire",
        "Tina's Deli",
        "Tinkers Creek Tavern",
        "Tiz Mahal - North Olmsted",
        "Tizzano's Italian Restaurant",
        "TJ Butcher Block",
        "TJ's on the Avenue",
        "Toby's",
        "Toby's - Garfield Hts",
        "Tomaydo - Tomahdo",
        "Tommy's on Coventry",
        "Tommy's Pizza",
        "Tommy's Place - Rocky River (new)",
        "Tommy's Woodfire Grill - Avon Lake",
        "Tong Ting, Hudson",
        "Tonight Tonight",
        "Tony D's",
        "Tony K's",
        "Tony Roma's",
        "Tony's",
        "Too Chinas, Oberlin",
        "Tops Market",
        "Tops Time Out Grill - Chardon",
        "Touch Supper Club",
        "Touche (Vermilion)",
        "Tower 230",
        "Tower City Food Court",
        "Traci's Restaurant",
        "Trader Joe's",
        "Tradewinds",
        "Translvania Bakery",
        "Transti - Parma Hts",
        "Trattoria on the Hill (aka Trattoria Roma Garden)",
        "Tre Belle ",
        "Treats by Pat - Willowick",
        "Tree Country Bistro ",
        "Tree House Gallery & Tea Room - Akron",
        "Treehouse",
        "Treehuggers Café",
        "Tremont Tap House ",
        "Tres Jalapenos Medina",
        "Tres Portillos",
        "Tresanti Italian Market - Parma Hts",
        "Treva - Akron",
        "Trifectas Sports Lounge",
        "Triple Crown",
        "Trivissono's - Lyndhurst",
        "Tropicanna - Avon",
        "Troyer's Home Pantry",
        "Truffles",
        "Truffles Pastry Shop ",
        "Tucky's",
        "Tuscany",
        "Tutto Giorno",
        "Tweety's",
        "Twice Good Wine - Berea",
        "Twin Lakes Tavern",
        "Twinsburg City Pub & Grill",
        "Two Dads Diner",
        "Two Papas",
        "Ty Fun ",
        "Udupi Cafe",
        "Umami",
        "Uncle Al's - Olmsted Twp.",
        "Uncle Bob's - Eastlake",
        "Uncle John's Tavern - Euclid",
        "Unger's Bakery",
        "Unicorn Restaurant - Grafton",
        "Union Club",
        "Union Station",
        "Unionville Tavern",
        "University Inn",
        "Uptown Grille",
        "Vaccaro's Trittoria",
        "Valentina's Pizza",
        "Valentinos Little Italy",
        "Valerios - Little Italy",
        "Valerios - Mayfield",
        "Valleta Café - W. 9th Street",
        "Van Roy",
        "Vargo's",
        "Varietals",
        "Velvet Dog",
        "Velvet Tango Room",
        "Vento Trattoria ",
        "Vera's Bakery",
        "Vern's ",
        "Verso",
        "Vetturnini's",
        "Vhooda",
        "Via Van Aken",
        "Viaduct Lounge (new)",
        "Vic Soul Food",
        "Vicanatos",
        "Vico",
        "Victoria's",
        "Victor's ",
        "Vieng's Asian Bistro ",
        "Vienna Restaurant",
        "Villa II - Brooklyn",
        "Villa Roma - E. 185th Street",
        "Villa Rosa",
        "Villa Y Zapata",
        "Village Bootlegger",
        "Village Pizza - Beachwood",
        "Vina Nate' ",
        "Vincenza's",
        "Vineyards Wine Merchant",
        "Vinny's Beverage",
        "Vintage House",
        "Vintage 'n' Cheese",
        "Violante",
        "Virtues",
        "Vito's",
        "Vittorio's Bona Appetito - Wickliffe",
        "Viva Fenando ",
        "V-Li's Thai Cuisine",
        "Vocelli",
        "Wagners Country Place",
        "Wagon Wheel Bar & Grill (Madison)",
        "Wah Fu's",
        "Wall Street Deli",
        "Ward's Inn",
        "Warehouse Beverage",
        "Warren Tavern - Lakewood",
        "Wasabi",
        "Washington Place Bistro",
        "Water Street Grill",
        "Waterbury Coach",
        "Watermark",
        "Waters Edge Deli",
        "Web of Life - Westlake",
        "Webb's ",
        "Weia Tela",
        "Wellington's",
        "Wembly's",
        "Wendy's",
        "West Bay Inn (Kellys Island)",
        "West End Tavern",
        "West Park Station",
        "West Point Market",
        "West Side Bakery - Akron",
        "West Side Market",
        "Western Reserve",
        "Western Reserve Wines",
        "Westwood Country Club",
        "Wexlers",
        "What's for Dessert - Rocky River",
        "Whau Nan",
        "Whispers",
        "Whistle Stop (Madison) ",
        "White Castle",
        "White Flour",
        "White Oaks",
        "Whiteys",
        "Whitmore's",
        "Whole Foods Market",
        "Wilbert's",
        "Wild Flour",
        "Wild Ginger",
        "Wild Goad Café",
        "Wild Harvest",
        "Wild Mango",
        "Wild Oats Market",
        "Wildflower Bakery",
        "Willoughby Bakery",
        "Willoughby Brewing Company",
        "Willoughby Deli",
        "Windows on the River",
        "Windsor's",
        "Windy's, Beachwood",
        "Wine Bar Rocky River ",
        "Wine Garden - University Hts.",
        "Wine Reserve",
        "Wine Room, The",
        "Wines for You",
        "Wing Warehouse",
        "Winking Lizard",
        "Winterbury Coach House",
        "Wojtila's Bakery",
        "Wok of the Falls",
        "Wok with Wing",
        "Wonder Bar",
        "Wonton Gourmet Noodles & BBQ ",
        "Wood & Wine",
        "Woods, The",
        "Woodyard Beverage",
        "Woody's",
        "Wooster Inn, The",
        "World Market / Cost Plus",
        "Wright Place - Willoughby",
        "Wu's Cuisine",
        "XO",
        "XYZ the Tavern (new)",
        "Yami Kitchen",
        "Yangtze Chinese Restaurant",
        "Yo Conos",
        "Yoconos",
        "Youngs Sushi",
        "Your's Truly",
        "Yukiho",
        "Yummy Yummy Express",
        "Za Za - Cleveland Hts",
        "Zachary's Deli & Restaurant",
        "Zach's Bar",
        "Zach's Steakhouse",
        "Zack Bruell (chef, Table 45, Parallax, L'Albatros, Chinato) ",
        "Zagarra's - Cleveland Hts.",
        "Zanzibar",
        "Zapitelli's",
        "Zayda's Deli",
        "Zen Cuisine",
        "Zephyr - Kent",
        "Zeppe's - Mentor",
        "Zidara's ",
        "Ziggy",
        "Zinc Bistro, Bar and Bakery",
        "Zocalo ",
        "Zog Dog",
        "Zoup",
        "Chris Hodgson (chef Dim and Den Sum, Hodge Podge truck)",
        "Bac Nguyen (chef Bac)"
    ];
}

/**
 * Request suggestions for the given autosuggest control. 
 * @scope protected
 * @param oAutoSuggestControl The autosuggest control to provide suggestions for.
 */
StateSuggestions.prototype.requestSuggestions = function (oAutoSuggestControl /*:AutoSuggestControl*/,
                                                          bTypeAhead /*:boolean*/) {
    var aSuggestions = [];
    var sTextboxValue = oAutoSuggestControl.textbox.value;
    
    if (sTextboxValue.length > 0){
    
        //search for matching states
        for (var i=0; i < this.states.length; i++) { 
            if (this.states[i].toUpperCase().indexOf(sTextboxValue.toUpperCase()) == 0) {
                aSuggestions.push(this.states[i]);
            } 
        }
    }

    //provide suggestions to the control
    oAutoSuggestControl.autosuggest(aSuggestions, false);
};
