Genre: alternative rock
Rating:
Check Out: “Breathe,” “Soft Skeletons,” “Breaking,” and “Blame Me! Blame Me!”
purevolume, website

Well, all you diehard Anberlin fans, at the end of the month Anberlin will be releasing their new album on their new label, Universal Republic. In many ways, this album is a reflection of that step-up in the recording industry. If you always thought Anberlin was catchy, New Surrender is catchier. The great thing is that, aside from the misstep that is “Haight St.” Anberlin hasn’t lost who they are either.

In an AP interview that lead vocalist Stephen Christian gave in 2007 for the album Cities, he stated that their music had matured, because “the first album, Blueprints for the Black Market (2003), was childish in the fact that it was Man vs. World. The last album, Never Take Friendship Personal (2005), was Man vs. Man. Cities, however, is Man vs. Self.” New Surrender is both a reflection of that progression as well as the next step forward. You can essentially divide the first six songs up into chronological order:

Man vs. World: “The Resistance”
Man vs. Man: “Breaking,” “Blame Me! Blame Me!”
Man vs. Self: “Retrace,” “Feel Good Drag,” “Disappear”

The latter six songs are the step forward – as Christian sings in “Breathe,” This long of a struggle/ Finally opened up my eyes/ Revolution’s not easy/ With a civil war on the inside. With Man and Self both giving up the fight, Man feels as though he can find a purpose for his life (“Burn Out Brighter”), remember the happiness of his past without dwelling on the bad (“Younglife”), and generally enjoy life again (“Haight St.”). And just when you thought that Anberlin was taken over by aliens with all of this happiness going on, they come out with what is arguably their darkest song to date (“Soft Skeletons”) and a grand apocalyptic finale (“Misearbile Visu”).

This album is not Cities, and don’t make the mistake of hoping for Cities before you listen to it. Unlike some bands out there (I’m looking at you, Coldplay), Anberlin has always been able to grow musically while staying true to themselves. The first six songs show that Anberlin can even go backwards and still come up with music that sounds fresh.

It seems like a ballsy move to include some of the ‘happier’ songs on this album, but the directional shifts and the changes in sound impressed me so much that I could easily ignore “Haight St.” The addition of Christian McAlhaney has given the band a lot more depth than I thought he would. The remake of “Feel Good Drag” is an excellent example – I’ve always liked the song, but the old version seemed a bit too sing-songy. This new version has a desperation, and the chorus, Was this over before it ever began? practically demands an answer.

Furthermore, Stephen Christian’s singing style has changed considerably. I could hear a smoother blues tint in “Retrace” and he proves he can hit the high notes in “Misearbile Visu (Ex Malo Bonum).” As Christian’s voice was once the most distinctive part of this band, its changes have only added to their general sound. This is no longer an indie band; they’re a band confident in themselves and in their wider appeal.

Do yourself a favor and don’t give up on these guys just because they’re signed to a big label – they just might surprise you.

  • Share/Bookmark

Tags: ,

6 comments

  1. I’ve heard the album, and the worst part about it is the cover art (let’s be honest – that picture is irrelevant to everything).

    I would like to say that people shouldn’t fear “Haight St.”. I happen to thoroughly enjoy the happy tune from a band that usually delivers a “riff, rock out, and quiet verse” pattern in a minor key.

    You’ll find this disc offers the musical diversity that you’ve never fully gotten from Anberlin – and it’s a real treat.

    This could be Anberlin’s best album so far, and is their best chance, thus far, to reach the mainstream.

    /* Plugin Name: Custom Write Panel Plugin URI: http://wefunction.com/2008/10/tutorial-create-custom-write-panels-in-wordpress Description: Allows custom fields to be added to the WordPress Post Page Version: 1.0 Author: Spencer Author URI: http://wefunction.com /* ----------------------------------------------*/ $new_meta_boxes = array( "image" => array( "name" => "image", "std" => "", "title" => "Image URL", "description" => ""), "album" => array( "name" => "album", "std" => "", "title" => "Album Title", "description" => ""), "artist" => array( "name" => "artist", "std" => "", "title" => "Artist Name", "description" => ""), "year" => array( "name" => "year", "std" => "***, *** Records", "title" => "Year & Record Label", "description" => ""), "wiki" => array( "name" => "wiki", "std" => "", "title" => "Wikipedia Link", "description" => ""), "web" => array( "name" => "web", "std" => "", "title" => "Website Link", "description" => ""), "myspace" => array( "name" => "myspace", "std" => "", "title" => "Myspace Link", "description" => ""), "lastfm" => array( "name" => "lastfm", "std" => "", "title" => "Last.fm Link", "description" => ""), "genre" => array( "name" => "genre", "std" => "", "title" => "Genre(s)", "description" => ""), "rate" => array( "name" => "rate", "std" => "", "title" => "Rating", "description" => "values of 5, 4.5, 4, etc."), "recs" => array( "name" => "recs", "std" => "'***,' '***,' '***,' '***'", "title" => "Recommended Songs", "description" => ""), "alb1a" => array( "name" => "alb1a", "std" => "", "title" => "Recommended Listen #1: Artist", "description" => ""), "alb1n" => array( "name" => "alb1n", "std" => "", "title" => "Recommended Listen #1: Album", "description" => ""), "alb1l" => array( "name" => "alb1l", "std" => "", "title" => "Recommended Listen #1: Link", "description" => ""), "alb2a" => array( "name" => "alb2a", "std" => "", "title" => "Recommended Listen #2: Artist", "description" => ""), "alb2n" => array( "name" => "alb2n", "std" => "", "title" => "Recommended Listen #2: Album", "description" => ""), "alb2l" => array( "name" => "alb2l", "std" => "", "title" => "Recommended Listen #2: Link", "description" => "") ); function new_meta_boxes() { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { $meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true); if($meta_box_value == "") $meta_box_value = $meta_box['std']; echo''; echo'

    '.$meta_box['title'].'

    '; echo'
    '; echo'

    '; } } function create_meta_box() { global $theme_name; if ( function_exists('add_meta_box') ) { add_meta_box( 'new-meta-boxes', 'For Album Reviews', 'new_meta_boxes', 'post', 'side', 'high' ); } } function save_postdata( $post_id ) { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { // Verify if ( !wp_verify_nonce( $_POST[$meta_box['name'].'_noncename'], plugin_basename(__FILE__) )) { return $post_id; } if ( 'page' == $_POST['post_type'] ) { if ( !current_user_can( 'edit_page', $post_id )) return $post_id; } else { if ( !current_user_can( 'edit_post', $post_id )) return $post_id; } $data = $_POST[$meta_box['name'].'_value']; if(get_post_meta($post_id, $meta_box['name'].'_value') == "") add_post_meta($post_id, $meta_box['name'].'_value', $data, true); elseif($data != get_post_meta($post_id, $meta_box['name'].'_value', true)) update_post_meta($post_id, $meta_box['name'].'_value', $data); elseif($data == "") delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true)); } }
  2. @matt: That’s a great point about the cover art – I didn’t even pick up on that! Then again, I blame the record co. because I’m sure the band probably didn’t even choose it.

    I don’t fear “Haight St.” I just think it could have been done better. We’ve heard some happier tunes from Anberlin before, and they always had a finesse to them. While I’m not objecting to the lyrics of “Haight St.” something about the arrangement struck me as false.

    I have to REALLY agree about diversity – and isn’t it great that they’re finally showcasing that diversity? I’m so glad this is their first mainstream album, because Cities would have just confused people.

    /* Plugin Name: Custom Write Panel Plugin URI: http://wefunction.com/2008/10/tutorial-create-custom-write-panels-in-wordpress Description: Allows custom fields to be added to the WordPress Post Page Version: 1.0 Author: Spencer Author URI: http://wefunction.com /* ----------------------------------------------*/ $new_meta_boxes = array( "image" => array( "name" => "image", "std" => "", "title" => "Image URL", "description" => ""), "album" => array( "name" => "album", "std" => "", "title" => "Album Title", "description" => ""), "artist" => array( "name" => "artist", "std" => "", "title" => "Artist Name", "description" => ""), "year" => array( "name" => "year", "std" => "***, *** Records", "title" => "Year & Record Label", "description" => ""), "wiki" => array( "name" => "wiki", "std" => "", "title" => "Wikipedia Link", "description" => ""), "web" => array( "name" => "web", "std" => "", "title" => "Website Link", "description" => ""), "myspace" => array( "name" => "myspace", "std" => "", "title" => "Myspace Link", "description" => ""), "lastfm" => array( "name" => "lastfm", "std" => "", "title" => "Last.fm Link", "description" => ""), "genre" => array( "name" => "genre", "std" => "", "title" => "Genre(s)", "description" => ""), "rate" => array( "name" => "rate", "std" => "", "title" => "Rating", "description" => "values of 5, 4.5, 4, etc."), "recs" => array( "name" => "recs", "std" => "'***,' '***,' '***,' '***'", "title" => "Recommended Songs", "description" => ""), "alb1a" => array( "name" => "alb1a", "std" => "", "title" => "Recommended Listen #1: Artist", "description" => ""), "alb1n" => array( "name" => "alb1n", "std" => "", "title" => "Recommended Listen #1: Album", "description" => ""), "alb1l" => array( "name" => "alb1l", "std" => "", "title" => "Recommended Listen #1: Link", "description" => ""), "alb2a" => array( "name" => "alb2a", "std" => "", "title" => "Recommended Listen #2: Artist", "description" => ""), "alb2n" => array( "name" => "alb2n", "std" => "", "title" => "Recommended Listen #2: Album", "description" => ""), "alb2l" => array( "name" => "alb2l", "std" => "", "title" => "Recommended Listen #2: Link", "description" => "") ); function new_meta_boxes() { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { $meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true); if($meta_box_value == "") $meta_box_value = $meta_box['std']; echo''; echo'

    '.$meta_box['title'].'

    '; echo'
    '; echo'

    '; } } function create_meta_box() { global $theme_name; if ( function_exists('add_meta_box') ) { add_meta_box( 'new-meta-boxes', 'For Album Reviews', 'new_meta_boxes', 'post', 'side', 'high' ); } } function save_postdata( $post_id ) { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { // Verify if ( !wp_verify_nonce( $_POST[$meta_box['name'].'_noncename'], plugin_basename(__FILE__) )) { return $post_id; } if ( 'page' == $_POST['post_type'] ) { if ( !current_user_can( 'edit_page', $post_id )) return $post_id; } else { if ( !current_user_can( 'edit_post', $post_id )) return $post_id; } $data = $_POST[$meta_box['name'].'_value']; if(get_post_meta($post_id, $meta_box['name'].'_value') == "") add_post_meta($post_id, $meta_box['name'].'_value', $data, true); elseif($data != get_post_meta($post_id, $meta_box['name'].'_value', true)) update_post_meta($post_id, $meta_box['name'].'_value', $data); elseif($data == "") delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true)); } }
  3. the cover art is relevant actually, the idea of it is to be the exact opposite of cities, and the picture reflects it perfectly

    /* Plugin Name: Custom Write Panel Plugin URI: http://wefunction.com/2008/10/tutorial-create-custom-write-panels-in-wordpress Description: Allows custom fields to be added to the WordPress Post Page Version: 1.0 Author: Spencer Author URI: http://wefunction.com /* ----------------------------------------------*/ $new_meta_boxes = array( "image" => array( "name" => "image", "std" => "", "title" => "Image URL", "description" => ""), "album" => array( "name" => "album", "std" => "", "title" => "Album Title", "description" => ""), "artist" => array( "name" => "artist", "std" => "", "title" => "Artist Name", "description" => ""), "year" => array( "name" => "year", "std" => "***, *** Records", "title" => "Year & Record Label", "description" => ""), "wiki" => array( "name" => "wiki", "std" => "", "title" => "Wikipedia Link", "description" => ""), "web" => array( "name" => "web", "std" => "", "title" => "Website Link", "description" => ""), "myspace" => array( "name" => "myspace", "std" => "", "title" => "Myspace Link", "description" => ""), "lastfm" => array( "name" => "lastfm", "std" => "", "title" => "Last.fm Link", "description" => ""), "genre" => array( "name" => "genre", "std" => "", "title" => "Genre(s)", "description" => ""), "rate" => array( "name" => "rate", "std" => "", "title" => "Rating", "description" => "values of 5, 4.5, 4, etc."), "recs" => array( "name" => "recs", "std" => "'***,' '***,' '***,' '***'", "title" => "Recommended Songs", "description" => ""), "alb1a" => array( "name" => "alb1a", "std" => "", "title" => "Recommended Listen #1: Artist", "description" => ""), "alb1n" => array( "name" => "alb1n", "std" => "", "title" => "Recommended Listen #1: Album", "description" => ""), "alb1l" => array( "name" => "alb1l", "std" => "", "title" => "Recommended Listen #1: Link", "description" => ""), "alb2a" => array( "name" => "alb2a", "std" => "", "title" => "Recommended Listen #2: Artist", "description" => ""), "alb2n" => array( "name" => "alb2n", "std" => "", "title" => "Recommended Listen #2: Album", "description" => ""), "alb2l" => array( "name" => "alb2l", "std" => "", "title" => "Recommended Listen #2: Link", "description" => "") ); function new_meta_boxes() { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { $meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true); if($meta_box_value == "") $meta_box_value = $meta_box['std']; echo''; echo'

    '.$meta_box['title'].'

    '; echo'
    '; echo'

    '; } } function create_meta_box() { global $theme_name; if ( function_exists('add_meta_box') ) { add_meta_box( 'new-meta-boxes', 'For Album Reviews', 'new_meta_boxes', 'post', 'side', 'high' ); } } function save_postdata( $post_id ) { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { // Verify if ( !wp_verify_nonce( $_POST[$meta_box['name'].'_noncename'], plugin_basename(__FILE__) )) { return $post_id; } if ( 'page' == $_POST['post_type'] ) { if ( !current_user_can( 'edit_page', $post_id )) return $post_id; } else { if ( !current_user_can( 'edit_post', $post_id )) return $post_id; } $data = $_POST[$meta_box['name'].'_value']; if(get_post_meta($post_id, $meta_box['name'].'_value') == "") add_post_meta($post_id, $meta_box['name'].'_value', $data, true); elseif($data != get_post_meta($post_id, $meta_box['name'].'_value', true)) update_post_meta($post_id, $meta_box['name'].'_value', $data); elseif($data == "") delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true)); } }
  4. I agree with Brandon, i find the cover art to be one of the most relevant things to the album as it shows the band’s change of style and is the key concept to showing their change from cities. i think all cover art is relevant as it is the first thing that is seen and i the only thing to draw a new audience in. Cover art is never irrelevant, if it were then everyone would be selling albums with white backgrounds and album names, the cover is what identifies the artist and what defines their image. It is never irrelevant.

    /* Plugin Name: Custom Write Panel Plugin URI: http://wefunction.com/2008/10/tutorial-create-custom-write-panels-in-wordpress Description: Allows custom fields to be added to the WordPress Post Page Version: 1.0 Author: Spencer Author URI: http://wefunction.com /* ----------------------------------------------*/ $new_meta_boxes = array( "image" => array( "name" => "image", "std" => "", "title" => "Image URL", "description" => ""), "album" => array( "name" => "album", "std" => "", "title" => "Album Title", "description" => ""), "artist" => array( "name" => "artist", "std" => "", "title" => "Artist Name", "description" => ""), "year" => array( "name" => "year", "std" => "***, *** Records", "title" => "Year & Record Label", "description" => ""), "wiki" => array( "name" => "wiki", "std" => "", "title" => "Wikipedia Link", "description" => ""), "web" => array( "name" => "web", "std" => "", "title" => "Website Link", "description" => ""), "myspace" => array( "name" => "myspace", "std" => "", "title" => "Myspace Link", "description" => ""), "lastfm" => array( "name" => "lastfm", "std" => "", "title" => "Last.fm Link", "description" => ""), "genre" => array( "name" => "genre", "std" => "", "title" => "Genre(s)", "description" => ""), "rate" => array( "name" => "rate", "std" => "", "title" => "Rating", "description" => "values of 5, 4.5, 4, etc."), "recs" => array( "name" => "recs", "std" => "'***,' '***,' '***,' '***'", "title" => "Recommended Songs", "description" => ""), "alb1a" => array( "name" => "alb1a", "std" => "", "title" => "Recommended Listen #1: Artist", "description" => ""), "alb1n" => array( "name" => "alb1n", "std" => "", "title" => "Recommended Listen #1: Album", "description" => ""), "alb1l" => array( "name" => "alb1l", "std" => "", "title" => "Recommended Listen #1: Link", "description" => ""), "alb2a" => array( "name" => "alb2a", "std" => "", "title" => "Recommended Listen #2: Artist", "description" => ""), "alb2n" => array( "name" => "alb2n", "std" => "", "title" => "Recommended Listen #2: Album", "description" => ""), "alb2l" => array( "name" => "alb2l", "std" => "", "title" => "Recommended Listen #2: Link", "description" => "") ); function new_meta_boxes() { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { $meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true); if($meta_box_value == "") $meta_box_value = $meta_box['std']; echo''; echo'

    '.$meta_box['title'].'

    '; echo'
    '; echo'

    '; } } function create_meta_box() { global $theme_name; if ( function_exists('add_meta_box') ) { add_meta_box( 'new-meta-boxes', 'For Album Reviews', 'new_meta_boxes', 'post', 'side', 'high' ); } } function save_postdata( $post_id ) { global $post, $new_meta_boxes; foreach($new_meta_boxes as $meta_box) { // Verify if ( !wp_verify_nonce( $_POST[$meta_box['name'].'_noncename'], plugin_basename(__FILE__) )) { return $post_id; } if ( 'page' == $_POST['post_type'] ) { if ( !current_user_can( 'edit_page', $post_id )) return $post_id; } else { if ( !current_user_can( 'edit_post', $post_id )) return $post_id; } $data = $_POST[$meta_box['name'].'_value']; if(get_post_meta($post_id, $meta_box['name'].'_value') == "") add_post_meta($post_id, $meta_box['name'].'_value', $data, true); elseif($data != get_post_meta($post_id, $meta_box['name'].'_value', true)) update_post_meta($post_id, $meta_box['name'].'_value', $data); elseif($data == "") delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true)); } }

Leave a comment