  $(document).ready(function(){
    $("#searchKeyword").autocomplete("/search/data.php", {
		width: 320,
		scroll: true,
		scrollHeight: 300,
		selectFirst: false,
		formatItem: function(data, i, n, value) {
			strResult = "<strong>"+value+"</strong>";
			if (data[2]) {
				strResult += "<br/>"+data[2];
			}
			if (data[1]) {
				return "<img src=\"" + data[1] + "\" width=\"60\" height=\"60\" alt=\"\" align=\"left\" />"+strResult+'<hr />';
			} else {
				return strResult;
			}
		}
	});
	$("#searchKeyword").result(function(event, data, formatted) {
		if (data)
			$("#siteSearch").submit();
	});
  });
