	$.fn.check = function() {
		return this.each(function() {
			this.checked = true;
		});
	};

	$(document).ready(function(){
		/*$("input.radio:eq(0)").check();*/
		/* if checked select the item to change the prices */
		$("li.price2").hide();
		
		$("ul#quick-search input.radio").click(function(){
			if ($(this).val() == 1) { $("li.price2").hide(); $("li.price1").show(); }
			if ($(this).val() == 2) { $("li.price1").hide(); $("li.price2").show(); }
		});
		$("select#PropertySortDisplay").change(function(){
			var sort = $(this).val().split("-");
			$("input#PropertySort").attr("value", sort[0]);
			$("input#PropertyDirection").attr("value", sort[1]);
			$("input.btn-search").click();
		});
	});
