$(document).ready(function() {

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

	$("#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();
	});

});
