in firefox it looks fine, in IE, not so much...
http://naniboujou.com (if you look at the left, the menu bar, season, history... etc..

its everysince i changed
THIS:

<tr>
<td>
<a href="http://naniboujou.com/season.php"
				ONMOUSEOVER="changeImages('season', 'images/season-over.gif'); return true;"
				ONMOUSEOUT="changeImages('season', 'images/season.gif'); return true;">
				<img name="season" src="images/season.gif" width=142 height=29 border=0 alt="season and hours"></a></td>
	</tr>

TO THIS:

<tr>
<td>

<a href="http://naniboujou.com/season.php"
				ONMOUSEOVER="changeImages('season', 'images/season-over.gif'); return true;"
				ONMOUSEOUT="changeImages('season', 'images/season.gif'); return true;">
<?php
$thisfile = basename($_SERVER['PHP_SELF']); 
  if ($thisfile == 'season.php') { echo ' <img name="season" SRC="images/season-over.gif" width=142 height=29 border=0 alt="season and hours">'; } else{ echo '<img name="season" SRC="images/season.gif" width=142 height=29     border=0 alt="season and hours">'; } 
?>
</a>
</td>
	</tr>

how can i smoosh the file back to one seamless file again, like it was in both IE and firefox

thanks!
pj

i got it...
i changed this:

#
width=142 height=29 border=0 alt="season and hours"> '; } else{ echo '<img name="season" SRC="images/season.gif" width=142 height=29 border=0 alt="season and hours"> '; }
#
?>
#
</a>
#
</td>

to THIS:

border=0 alt="season and hours">'; } 
?></a></td></tr>
	<tr>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.