$(function() {

	var a1;
    var onAutocompleteSelect = function(value, data) {
	  //document.location.href = data;
      //$('#selection').html('<img src="\/global\/flags\/small\/' + data + '.png" alt="" \/> ' + value);
      //alert(data);
	  showAddress(data);
    }

    var options = {
      serviceUrl: '/autocomplete.asp',
      width: 400,
	  minChars:2, 
      delimiter: /(,|;)\s*/,
      onSelect: onAutocompleteSelect,
      deferRequestBy: 500, //miliseconds
      params: { country: 'Yes' },
      noCache: true //set to true, to disable caching
    };

    a1 = $('#query').autocomplete(options);
	//a1.disable();

//	$('#sbtButton').click(function(e){ 
//		a1.enable();
//		a1.onValueChange();
//		a1.stopKillSuggestions();
//		a1.disable();
//		$("html").click(function (e){
//			if (e.target == document.getElementById("sbtButton")){
//			}else{
//				a1.killSuggestions();
//			}
//		});

//	});

});


function sbtsearch(aObj){
	alert(aObj);
	return false;
}

