I assume you have a header.php file that you are including on every page and you want the header to display the graphic... but only display it on the home page, right?
Then do this:
In the header, find the part where the graphic is displayed and change the code from this:
<img src="images/middleimg.jpg">
to this:
<?php if ($page_code=="home") { ?>
<img src="images/middleimg.jpg">
<?php } ?>
Then, in your home.php page, change this line:
include("header.php");
to this:
$page_code="home";
include("header.php");