Getting the WordPress custom menu titles and outputting them in a theme

From quick look at wp_nav_menu() code:

function get_menu_name($location) {

    $locations = get_nav_menu_locations();
    $id = $locations[$location];
    $menu = wp_get_nav_menu_object($id);

    return $menu->name;
}