//
// Author:      Sandro Fernandes
//
// Created:     28/01/2008
// Copyright:   (c) 2008 - Fernandes , Oshiro e Cia Ltda
//               http://www.softent.com.br
//               Sandro.Fernandes@softent.com.br
//
$(document).ready(function(){

      if( $('#search').length>0){                                             // bind funcition to search fields
         auto('#search', '#Ok');
      }

      if( $('#pesquisar').length>0){
        auto('#pesquisar','#pesquisar_button');
      }

    function auto(name , butt){                                               // enter key
      $(name).keyup(function(event){
         if( event.keyCode == 13  &&  $(name).val()!=""){
            location="/pesquisar/"+$(name).val()+'/';
         }
      });

      $(butt).click(function(){                                               // simulate a key up
         if( $(name).val()!="")
             location="/pesquisar/"+$(name).val()+'/';
      });
                                                                              // autocomplete function
      $(name).autocomplete("/lista-palavras/",
    	{
    	delay:200,
    	minChars:1,
    	matchSubset:1,
    	autoFill:false,
    	maxItemsToShow:10,
    	cacheLength:1
      });
      };
});


