/// check if blog page and get that featured image
if (is_home() && get_option('page_for_posts') ) {
$src = wp_get_attachment_image_src(get_post_thumbnail_id(get_option('page_for_posts')),'full');
$featured_image = $img[0];
} else if (is_archive() && get_option('page_for_posts') ) {
$src = wp_get_attachment_image_src(get_post_thumbnail_id(get_option('page_for_posts')),'full');
$featured_image = $img[0];
} else {
/// simply get the featured image for the page
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 5600,1000 ), false, '' );
}
/*if ($src == NULL) {
/// if nothing is pulled get featured image by a specific page
$post_id = 6;
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post_id), 'thumbnail_size' );
$url = $src[0];
}*/
?>