var _maxPriceInteraction;

(function($){ $(document).ready(function(){

	/* Init shadowbox */
	Shadowbox.init({ animate:false, skipSetup:true });

	/* =================================================================
		POPUPS FOR LISTING SEARCHES
	=================================================================
	$('a#searchByNum, a#searchBySub, a#searchByAddr').shadowbox({
		player:'iframe',
		content:$(this).attr('href'),
		width:400,
		animate:false
	}); */

	/* =================================================================
		MAX PRICE (AUTO SELECT)
	================================================================= */
	$("select#hsfMinPrice").change( function() {
		if (_maxPriceInteraction) { return; }
		var maxPrice = $("#hsfMaxPrice").get(0);
		maxPrice.selectedIndex = this.selectedIndex;
	} );
	$("select#hsfMaxPrice").focus( function() { _maxPriceInteraction = true; } );

	/* =================================================================
		AUTOCOMPLETE FOR CITY
	================================================================= */
	$("input#hsfCity").autocompleteArray(ac_cities,
		{
			delay:10,
			minChars:1,
			matchSubset:1,
			autoFill:true,
			maxItemsToShow:10,
			selectFirst:true,
			formatItem:function(row, i, num, prev) {
				return '<span>' + prev.toUpperCase() + '</span>' + row[0].substring(prev.length).toUpperCase();
			}
		/* DELETE VALUE ON DOUBLE CLICK */
		}).dblclick(function(){ this.value = ''; });

/* END .ready() */
}); })(jQuery);
