$(document).ready(function(){
	$('#searchtextfield').focus(function(){
		var options = {
			script: mainurl+"?module=customform&action=gethint&json=true&limit=6&checkbox="+ $('#chb1').is(':checked')+'&',
			varname: "input",
			json: true,
			shownoresults: false,
			maxresults: 6,
			minchars: 3,
			callback: function (obj) { document.getElementById('searchtextfield').text = obj.id; }
		};			
		var as_json = new bsn.AutoSuggest('searchtextfield', options);
	});
	$('#chb1').click(function(){
		$.ajax({
        	type: "POST",
            url: mainurl+"?module=poi_annoucement&action=setSearchCookie&cookie=ann&token="+token,
            beforeSend: function(){},
            success: function(response){}
        })    
	});
	$('#chb2').click(function(){
		$.ajax({
        	type: "POST",
            url: mainurl+"?module=poi_annoucement&action=setSearchCookie&cookie=cmp&token="+token,
            beforeSend: function(){},
            success: function(response){}
        })		
	});
}); 	
