I am currently working on a project that involves an unordered list with separate list items. The menu design includes product images in the top list item and the corresponding product names in the list item below. I have successfully implemented a hover state on the bottom list items (product names). However, I am now aiming to activate the same hover state when hovering over the top list items (product images) as well. For instance, when I hover over /images/foo.png, the link below in the separate list item should turn #ffffff. Below is a snippet of the code I am dealing with. Please note that this is just a miniature version of a much larger menu.
<ul>
<li><a href="/products/">SPOUTS</a>
<ul>
<li class="menuheader"><a href="/products/spouts/index/">SPOUTS</a></li>
<li>
<a href="/products/spouts/foo/"><img src="/images/foo.png" style="margin:20px 0px 0px 20px;float:left;" /></a>
<a href="/products/spouts/bar/"><img src="/images/bar.png" style="margin:20px 20px 0px 5px;float:left;" /></a>
</li>
<li style="margin-top:10px;">
<a href="/products/spouts/foo/" style="float:left;margin-left:50px;">FOO</a>
<a href="/products/spouts/bar/" style="float:left;margin-left:60px;">BAR</a>
</li>
</ul>
</li>