I use the below code to only show image on homepage. This might be a helpful to others. I'm also using latest zen 1.3.8a. Put the code in your tpl_header.php which is found in the common folder. Make sure to put it in the overrides. you can view my web site link below. I beleive this is what you looking for?
<!-- bof top image -->
<?php if ($this_is_home_page) { ?>
<div align="center">
<center>
<table border="0" cellspacing="0" width="800" cellpadding="0">
<tr>
<td>
<img border="0" src="http://your domain/images/your_image.jpg" alt="Athying goes here">
</td>
</tr>
</table>
</center>
</div>
<?php } ?>
<!-- eof top image -->




