On Thu, 6 Dec 2007 16:39:08 +0000 (UTC), "sauerwein"
<webforumsuser (AT) macromedia (DOT) com> wrote:
The problem is because the path to the rollover images is wrong. An
example in your code is this:
<a href="#" onmouseout="MM_swapImgRestore()"
onmouseover="MM_swapImage('discute','','images/discute-over_12.jpg',1)"><img
src="../images/discute-out_12.jpg" name="discute" width="171"
height="25" border="0" id="discute" /></a>
Note that the onmouseover is looking in the "images" folder. It should
be looking for that folder one level up, like the onmouseout is:
<a href="#" onmouseout="MM_swapImgRestore()"
onmouseover="MM_swapImage('discute','','../images/discute-over_12.jpg',1)"><img
src="../images/discute-out_12.jpg" name="discute" width="171"
height="25" border="0" id="discute" /></a>
Gary