function formatItem(row) {
    	return '<div style=\"height:50px;line-height:50px\"><div style="height:50px;line-height:50px;float:left;width:50px">'+row[0] +'</div><div style="height:50px;line-height:50px;float:left;width:140px">'+row[1] +'</div><div style="height:50px;line-height:15px;size:12px;float:left;width:90px"><span style="color:#ff0000;size:14px;font-weight:bold;">'+row[6] +row[2] +'</span><br />'+row[3]+' Prices<br>'+row[7]+' Reviews</div></div>';
		return "<div style=\"height:50px;line-height:50px\">"+row[0] + "" + row[1] + "<br />"+ row[2] +"</div>";
}
function formatResult(row) {
    	return row[1];
}
$(document).ready(function() {

	defaultText = $("#autoCompleteKeyword").val();

	$("#autoCompleteKeyword").focus(function(){

		if($(this).val() == defaultText) {

			$(this).val('');

		}

	});

	$("#autoCompleteKeyword").blur(function(){

		if($(this).val() == '') {

			$(this).val(defaultText);

		}

	});
	$("#autoCompleteKeyword").result(function(){

		document.sform.submit();

	});

	$("#autoCompleteKeyword").autocomplete(baseurl + '/redeals/autocomplete', {

		width: 310,
		height: 400,
		formatItem:formatItem,
		formatResult:formatResult,
		selectFirst: false

	});

});
