Hi
Not sure if you still need this but here's what you're looking for:
Code:
$(function() {
// set opacity to nill on page load
$("#menuID ul span").css("opacity","0");
// on mouse over
$("#menuID ul span").hover(function () {
// animate opacity to full
$(this).stop().animate({
opacity: 1
}, 'slow');
},
// on mouse out
function () {
// animate opacity to nill
$(this).stop().animate({
opacity: 0
}, 'slow');
});
});
You need to set your menu items up like this, and the background image needs to be defined in CSS:
HTML Code:
<li><a href="#" class="uniqueClass"><span></span></a></li>
I have a working example here if you wish to look further into the code....
Our Locations | Find a Dealership | Vertu Motors PLC
Rachel