$(document).ready(function(){
	$("a.plus, a.shops, a.zoom").colorbox({opacity:"0.5", transition:"none", width:"75%", height:"75%"});
	var def_val = $('#model').val();
	var search_val = 'поиск модели ...';

	$('#model').keyup(function(){
		def_val = $(this).val();
	});	
	$('#model').focus(function(){
		if(def_val == search_val || def_val == '') {
			$(this).val('');
		}		
	});
	$('#model').blur(function(){
		$(this).val(def_val);
		if(def_val == '') {
			$(this).val(search_val);
		}
	});
function liFormat (row, i, num) {
	var result =  '<a href=' + row[1] + '>' + row[0] + '</a></p>';
	return result;
}
	function selectItem(li) {
		if(li.extra) var sValue = li.extra[0];
		else var sValue = li.selectValue;
		if (sValue) {
			document.location = sValue;
		}
	}
 $("#model").autocomplete("search.html", {
	delay:10,
	minChars:4,
	matchSubset:1,
	autoFill:true,
	matchContains:1,
	cacheLength:10,
	selectFirst:true,
	formatItem:liFormat,
	maxItemsToShow:10,
	onItemSelect:selectItem
	}); 
});