@tkabe: Header map will not work properly as this is responsive design theme and the position changes as per the screen size.
The best option is to upgrade To Catch Everest Pro theme and add the image from “Appearance => Widgets” to header top sidebar.
But for Catch Everest Free theme, you need to build child theme and created functions.php file in your child theme and add the following code
<?php
function catcheverest_child_headerimage() {
echo '<a href="http://calprogramsautistic.org/support/2014_fundraiser/" title="Fund Raiser" class="fund-raiser"><img src="http://calprogramsautistic.org/wp-content/uploads/2014/03/copy-CPA_header_fundraiser.jpg" title="Fund Raiser" /></a>';
}
add_action( 'catcheverest_hgroup_wrap', 'catcheverest_child_headerimage', 5 );