﻿
function findValue(li) {
    if (li == null) return alert("No match!");

    // if coming from an AJAX call, let's use the CityId as the value
    if (!!li.extra) var sValue = li.extra[0];

    // otherwise, let's just display the value in the text box
    else var sValue = li.selectValue;

    window.location.href = '/Products/search/Search-' + sValue + '/'

  //  alert("The value you selected was: " + sValue);
}

function selectItem(li) {
    findValue(li);
}

function formatItem(row) {
    return row[0] + " (id: " + row[1] + ")";
}

function lookupAjax() {
    var oSuggest = $("#CityAjax")[0].autocompleter;

    oSuggest.findValue();

      return false;
}

function lookupLocal() {
    var oSuggest = $("#txtStyle")[0].autocompleter;

    oSuggest.findValue();
   
    return false;
}

$(document).ready(function() {
    $("#CityAjax").autocomplete(
		"autocomplete_ajax.cfm",
		{
		    delay: 10,
		    minChars: 2,
		    matchSubset: 1,
		    matchContains: 1,
		    cacheLength: 10,
		    onItemSelect: selectItem,
		    onFindValue: findValue,
		    formatItem: formatItem,
		    autoFill: true
		}
	);

		$("#txtStyle").autocompleteArray(
		["Aspen","Back","Black","Blush","Boot","Boots","Boy's","Brass","Brazen","Brown","Brush-Off","Burnt","by","Cactus","Cayenne","Cherry","Chestnut/Black","Chocolate","Chrome","Clog","Coffee","Composite","Cowboy","Cross","Crumpled","Crush","Dark","Desert","Distressed","Dream","Dress","Durango","Dusk","Dusk","Dusty","Earth","Easy","Eclipse","Engineer","Espresso","Farm","Fashion","Flirt","Flirtatious","Flower","Fringe","Gambler","Girl's","Golden","Green","Harness","Hearbreaker","Heartfelt","in","Infant's","Ink","Jealousy","Jet","Kid's","Lace","Lacer","Lacey","Leather","Li'l","Lil'","Lizard","Love","Mare-y","Me","Mushroom","Navy","Nicotine","Oiled","Olive","Orange","Outlaw","Partners","Peanut","Pink","Powder","Print","Pull-On","Pumpkin","Raisin","Ranch","Rebel","Red","Rhinestone","Rust","Saddle","Saddle-Lace","Sassy","Scroll","Shoe","Shoes","Short","Shorty","Side","Sienna","Slider","Slouch","Slouch-i-tude","Snake","Soft","Softly","SPR","Steel","Sultry","Tall","Tan","Taupe","Tip","Toasty","Toe","Triad","Trial","Understated","Waterproof","Wave","Western","White","Wine","Wing","with","Women's","Work","Workin'","Zip","Zipper"
		],
		{
		    delay: 10,
		    minChars: 1,
		    matchSubset: 1,
		    onItemSelect: selectItem,
		    onFindValue: findValue,
		    autoFill: true,
		    maxItemsToShow: 10
		}
	);
});
