You should be able to do this will a little custom PHP code. Basically, you would roughly follow the instructions given in the screencast linked to above, but instead just create a single Custom Hook Box and set it to display on ALL Layouts, and then paste in the following code, tweaking it to your specific needs:
PHP Code:
<?php if( is_category( 'Category #1' ) || in_category( 'Category #1' ) ) { ?>
YOUR CATEGORY #1 HEADER IMAGE
<?php } elseif( is_category( 'Category #2' ) || in_category( 'Category #2' ) ) { ?>
YOUR CATEGORY #2 HEADER IMAGE
<?php } elseif( is_category( 'Category #3' ) || in_category( 'Category #3' ) ) { ?>
YOUR CATEGORY #3 HEADER IMAGE
<?php } ?>
Eric
Eric