AutoCompleteLayer.prototype.load = function() {
	var value = this.input.value;
	new Ajax.Request('../../../apps/search/suggest.php?query='+value+'&cs=CORP_SIEMENS',{asynchronous: false,
	onSuccess: function(xhr)
		{
			if(xhr.responseText.length > 0)
			{
				this.content = '<ul>';
				var suggestion = xhr.responseText.split("||");
				suggestion.each(function(item)
				{
					this.content += '<li><a href=\"javascript:void(0);\">'+item+'</a></li>';
				}.bind(this));
				this.content += '</ul>';
				this.display();
			}
		}.bind(this)
	});
}