/* 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=quickSearchHomes]").bind("submit", cleanInput);
});

function cleanInput(e) {
	if ($("input#city").val() == "City") $("input#city").val("");
	if ($("input#zip").val() == "Zip code") $("input#zip").val("");
}