Except for the first list? You have only shown us one list. I think you meant 'list item'.
Even so, it still isn't clear what must change, but I am assuming something like so will do:
Code:
<ul id="idList">
<li class="iactive"><a href="#"><img src="2.gif" alt="" border="0" />pap1</a></li>
<li><a href="#" onmouseover="document.images['limg1'].src = '3.gif';"><img name="limg1" src="1.gif" alt="" border="0" />good</a></li>
<li><a href="#" onmouseover="document.images['limg2'].src = '3.gif';"><img name="limg2" src="1.gif" alt="" border="0" />good</a></li>
<li><a href="#" onmouseover="document.images['limg3'].src = '3.gif';"><img name="limg3" src="1.gif" alt="" border="0" />good</a></li>
<li><a href="#" onmouseover="document.images['limg4'].src = '3.gif';"><img name="limg4" src="1.gif" alt="" border="0" />good</a></li>
<li><a href="#" onmouseover="document.images['limg5'].src = '3.gif';"><img name="limg5" src="1.gif" alt="" border="0" />good</a></li>
</ul>
I'm also assuming that you want them to change back onmouseout. If so, add the corresponding onmouseout event to each link, example:
Code:
onmouseout="document.images['limg1'].src = '1.gif';"
Just be sure to use the matching ['limg#'] for each one.
Bookmarks