 jQuery(document).ready(function($) {

	 if (jQuery('#tx_indexedsearch_sword').length > 0) {
		 
		 jQuery('#tx_indexedsearch_sword').autocomplete({
	         source: '?eID=cb_indexedsearch_autocomplete',
	         minLength: 3,
	         select: function(event, ui) {
				var thefield = jQuery("#tx_indexedsearch_sword");
				if (thefield) {
					thefield.val(ui.item.word);
				}

				var theform = thefield.parents('form:first');
				
				if(theform.is("form")) {
					theform.submit();
				}
				
	         }
	     }).data('autocomplete')._renderItem = function(ul, item) {
			 ul.css('z-index', 10000);
	         return $( '<li class="w250"></li>' )
	             .data( 'item.autocomplete', item )
	             .append( '<a>' + item.word + '&nbsp;&nbsp;&nbsp;' + item.count + '</a>' )
	             .appendTo( ul );				 
	     };
		 
	     
	 }
	 
 });

