/* Javascript for the homepage forms */

$(document).ready(function(){
	// Put label text into text fields
	$("input.labelInside").putLabelInside();
	
	// Split the min/max price drop-down value and put them in two hidden inputs
	$("select.minMaxSelect").minMaxSelect();
	
	$("form[name=quickSearchRentals]").bind("submit", cleanInput);
});

function cleanInput(e) {
	if ($("input#rent_city").val() == "City")
		$("input#rent_city").val("");
	if ($("input#rent_zip").val() == "Zip code")
		$("input#rent_zip").val("");

	if ($("select#prop_types").val() == "")
		$("select#prop_types").attr("name","noProperyTypes");
}