Thank you both for your responses.
@alchymyth – I went with your solution and read up on the conditional tags. Rewrote the code to:
if ( is_home() ) :
get_header('myheader' );
elseif ( is_front_page() ) :
get_header( );
endif;
Works perfectly! Thanks again!