What you have in your post here:
Code:
<li<a href="2008.html" onMousedown="document.images['example'].src=img2.src" onMouseup="document.images['example'].src=img1.src">
<img src="up1.gif" name="example" border=0></a>
</a>
is sloppy coding. There is no link because the opening li tag isn't closed, it lacks a >, and (less important) the li tag itself has no closing tag. It should look like so:
Code:
<li><a href="2008.html" onMousedown="document.images['example'].src=img2.src" onMouseup="document.images['example'].src=img1.src">
<img src="up1.gif" name="example" border=0></a>
</li>
There could also be other problems.
Bookmarks