jQuery(document).ready(function(){

	var options = {
			script:"js/search_ajax.php?json=true&limit=8&",
			varname:"input",
			json:true,
			shownoresults:false,
			maxresults:8,
			minchars: 3,
			cache: false,
			callback: function (obj) { 
				document.getElementById('search_engine').value = obj.id;
				jQuery('#search_engine_form').submit();
			}
		};
		var as_json = new bsn.AutoSuggest('search_engine', options);
	
});
