$(document).ready(function() {
  	// Handler for .ready() called.
	$('#loadingTxt').hide();
	$('#btnSubmit').show();
	});
	
	function lookup(inputString,LangString) {
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			// post data to our php processing page and if there is a return greater than zero
			// show the suggestions box
			//alert(LangString);
			$.post("/Nav/SearchAutoSuggest.asp", {mysearchString: ""+inputString+"",LangString: ""+ LangString + ""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
					
				}
			});
		}
	} //end
	
	// if user clicks a suggestion, fill the text box.
	function fill(thisValue) {
		$('#DanceName').val(thisValue);
		//alert("fff");
		setTimeout("$('#loadingTxt').show();$('#btnSubmit').hide();$('#formSearchDance222').submit();$('#suggestions').hide();", 200);

	}
