  jQuery(function() {
      });
function callLIST() 
{
$("#search").unautocomplete();
$("#search").autocomplete( wordlist, {
         matchContains: true,
  	 minChars: 3,
         scrollHeight: 220,
         cacheLength:0,
         delay:10
    });

}
function callURL()
{
$("#search").unautocomplete();
$("#search").autocomplete("http://www.khoj.com/suggestion.php", {
         delay:10,
         matchContains: true,
  	 minChars: 0,
         scrollHeight: 220,
         cacheLength:0
  });
}
function clearAuto()
{
$("#search").unautocomplete();
$("#search").autocomplete([" "], {
            scrollHeight: 220,
            cacheLength:0
           });
}

