Hi minduka,
It appears to be a little alignment issue, try this:
Replace your current table row <tr> code in where the 'home.gif' resides:
Code:
<tr>
<td height="20" colspan="5"> <a href="home.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('home','','home2.gif',1)"><img src="index_files/home.gif" alt="home" name="home" width="96" height="20" border="0"></a><a href="school.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('school','','school2.gif',1)"></a></td>
</tr>
with this new code:
Code:
<tr>
<td colspan="5"> <a href="home.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('home','','home2.gif',1)"><img src="index_files/home.gif" alt="home" name="home" width="96" height="20" border="0" align="left"></a><a href="school.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('school','','school2.gif',1)"></a></td>
</tr>
The difference: align="left"
Let us know if this works for you.