window.onload = function () {
	
	//$('member_search_form').onsubmit = function () {
		//inline_results();
		//return false;
	//}
	
	//$('member_form').onsubmit = function () {
		//alert('oi');
		// inline_map();
		//return false;
	//}
}

function inline_results() {
	// new Ajax.Updater ('member_search', base_url+'members/ajaxsearch', {method:'post', postBody:'firstname='+$F('firstname')+'&lastname='+$F('lastname')+'&city='+$F('city')+'&country='+$F('country')});
	// new Ajax.Updater ('member_search', base_url+'members/ajaxsearch', {method:'post', postBody:'firstname='+$F('firstname')+'&lastname='+$F('lastname')+'&city='+$F('city')});
	// new Effect.Appear('member_search',{ duration: 1.0 });
	// need to add country to the above
}

function inline_map() {
	new Ajax.Updater ('map', base_url+'members/ajaxsearch', {method:'post', postBody:'member='+$F('member')+'&firstname='+$F('firstname')+'&lastname='+$F('lastname')+'&city='+$F('city')});
}