/* =================================================================
  BIND EVENT LISTENERS
================================================================= */
$(document).ready( function() { autoSelectMaxPrice(); } );

/* =================================================================
  MAX PRICE (AUTO SELECT)
================================================================= */
var maxPriceInteraction;
function autoSelectMaxPrice() {
	$("#hsfMinPrice").change(
		function() {
			if (maxPriceInteraction) { return; }
			var maxPrice = $("#hsfMaxPrice").get(0);
			maxPrice.selectedIndex = this.selectedIndex;
		}
	)
	$("#hsfMaxPrice").focus(
		function() { maxPriceInteraction = true; }
	)
}
