function show_weather(container_id) {
	var box = $(container_id)
	var url = '/public/current_weather';
	
	do_with_ajax(url, null,
		function(xmlhttp, e) {
			fill_with_ajax_response($(container_id), xmlhttp, e);
		}
	);
}
