$().ready(function() {
	$("#tx_htdig_keywords").autocomplete(
		'fileadmin/scripts/searchsuggest.php',
		{
			width: 265,
			max: 5,
			cacheLength: 0,
			selectFirst: false,
			formatItem: function(row) {
				return "<span class=\"text\">" + row[0] + "</span>" + " <span class=\"results\">(" + row[1] + "x)</span>";
			},
			formatResult: function(row) {
				return row[0].replace(/(<.+?>)/gi, '');
			}
		}
	);
	
	$("#tx_htdig_keywords").focus(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
			$("#tx_htdig_keywords").addClass('focus');
		}
	});
	
	
	$("#tx_htdig_keywords").blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
			$("#tx_htdig_keywords").removeClass('focus');
		}
	});
});
