var search_form_id = new Array("normal_search","jojo_search","map_search");
function search_form(id) {
	for (var n in search_form_id) {
		var type = search_form_id[n];
		document.getElementById(type).style.display = (id == type) ? 'block' : 'none';
	}
}
