var nadelstich={
	suggest:{
		reader:{
			getRecords:function(json){
				try{return json.W3MAN.SEARCH.SUGGEST.LOOP[0]?json.W3MAN.SEARCH.SUGGEST.LOOP[0]:[];}catch(e){return[];}
			},getLabel:function(o){
				return o;
			},getValue:function(o){
				return o;
			}
		},handleFire:function(label, value){
			this.input.value=label;
			this.input.form.submit();
		}
	}
};

dojo.addOnLoad(function(){
	CndSuggest.prototype.handleFire=nadelstich.suggest.handleFire;
	CndSuggest.init(nadelstich.suggest.reader);
});

