$(document).ready(function() {

	// hide the location form
	$("#home-location-search-form").hide();

	if ($("#whichform-name:checked").val()=='search') {
		// show the name form, hide the address form
		$("#home-search-form").show();
		$("#home-location-search-form").hide();
	}
	if ($("#whichform-location:checked").val()=='search-location') {
		// hide the name form, show the address form
		$("#home-search-form").hide();
		$("#home-location-search-form").show();
	}

	$("#whichform-name").click(function() {
		// show the name form, hide the address form
		$("#home-search-form").show();
		$("#home-location-search-form").hide();
	});

	$("#whichform-location").click(function() {
		// hide the name form, show the address form
		$("#home-search-form").hide();
		$("#home-location-search-form").show();
	});

});
