  jQuery(document).ready(function($) 
{

$(document).ready(function(){
	$("#Hsearchtext").autocomplete("../sc_plugin/php/suggestion.php", {

	width: ac_result_width,
	max: ac_max_result_display,
	scroll: ac_result_scroll,
	scrollHeight: ac_result_height,
	formatItem: function(data, i, n, value) {
		var return_str = '';
		return_str += "<img src='" + data[1] + "' width='"+ac_image_width+"'/>";
		return_str += data[0];
		return return_str;
	}
	}).result(function(event, item) {
		if(ac_onClick_2_link==true)
		{
			location.href = item[item.length-1];
	  	}
	});
	
});



});
 



