I have a structure like this:
<div class="module">
<div class="moduleTop"></div>
<div class="moduleContent"></div>
<div class="moduleBottom"></div>
</div>
And each module section has a CSS property of
background: url (imagename.png);
I need to use jquery to change each of the image names of the 3 module parts to imagename-over.png every time .module is hovered, and changed back to original source when the .module div is hovered out.
Any help ?
Thanks.