One of my favorite hobbies is creating mixes, either for friends or for no reason at all. I made a three-part summer mix a while back which I thought you might be interested in. Most, if not all, of these artists have been reviewed and/or mentioned at some point in this blog so they should be familiar. If you like what you hear, please support the artists by buying their albums!
The link leads to muxtape.com. Check out the cover art while you’re at it:
![summer flight [EP] front a tunereview mix](http://www.awaitstheday.sunira.net/tunereview/wp-content/uploads/2008/07/summer-flight-front-150x150.png)
summer flight [EP]
Tags: driver f, jack's mannequin, mae, mixtape, switchfoot, the cinematics, the duke spirit, the starting line, umbrellas





I just listened to this, nice mix. I think you should do these regularly. I enjoy listening to other peoples mixes as they are a good way of introducing artists that you may not listen to normally.
'.$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)); } }