After digging around, I have discovered that you have to specifically list support for featured images by adding it to the add_theme_support function call in your functions.php for your skin.
Like this:
add_theme_support( ‘post-thumbnails’ );
add_theme_support( ‘post-thumbnails’, array( ‘page’, ‘post’, ‘team_manager’ ) );
That will add the ability to have featured images on your pages, posts AND team list.