

function toggle_flights() {
	$("#breakdown_without_flights").toggle();
	$("#breakdown_with_flights").toggle();
	if ($("#breakdown_without_flights").css("display") == "none") {
		$("#incexc_flights").text("(including flights)")
	} else {
		$("#incexc_flights").text("(excluding flights)")
	}
}

$(function () {
	$("#incexc_flights").click(toggle_flights);
})