 //<![CDATA[
  var a1;
  jQuery(function() {

    var onAutocompleteSelect = function(value, data) {
      $('#selection').html('<img src="\/global\/flags\/small\/' + data + '.png" alt="" \/> ' + value);
      //alert(data);
    }

    var options = {
      serviceUrl: 'http://food.sify.com/suggestion.php',
      width: 300,
      delimiter: /(,|;)\s*/,
      delay:100000,
      onSelect: onAutocompleteSelect,
      deferRequestBy: 0, //miliseconds
      params: { 'format': 'json' },
      noCache: false //set to true, to disable caching\
      
    };

    a1 = $('#search').autocomplete(options);

    $('#navigation a').each(function() {
      $(this).click(function(e) {
        var element = $(this).attr('href');
        $('html').animate({ scrollTop: $(element).offset().top }, 300, null, function() { document.location = element; });
        e.preventDefault();
      });
    });

  });

//]]>

