function autoboxsetup() { $("#faqsearch").autocompleteArray( [ "firefox","safari","flash","adobe","macromedia","install","How do I install Flash, and do I need to install it?","email","mail","outlook","pop3","smpt","webmail","What are the mail server settings for my e-mail?","setup","express","outlook express","set up my mail","setting up my mail","set up my e-mail","e-mail","use my email","use my e-mail","How do I set up my email in Outlook Express?","address","e-mail address","How many email addresses can I have?","antivirus","anti-virus","anti virus","virus","scanner","anti","maintenance","How often do I need to run my anti virus scanner?","How do I set up my email in MS Outlook?","apple"," mail"," osx"," tiger"," leopard"," email"," mac","Apple Mail is telling me that the server certificate is invalid.","domain names","domain","names","www","web site","web site address","Where should I purchase my domain name for my web site?","hosting","charge","web","What do you charge for Hosting?","code","language","program","tech","What technologies do you work with?" ], { delay:10, minChars:1, matchSubset:1, onItemSelect:selectItem, onFindValue:findValue, autoFill:true, maxItemsToShow:15 } ); 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; //alert("The value you selected was: " + sValue); } function selectItem(li) { findValue(li); } function formatItem(row) { return row[0]; //+ " (id: " + row[1] + ")"; } function lookupLocal(){ var oSuggest = $("#faqsearch")[0].autocompleter; oSuggest.findValue(); return false; } }