Tengo este menú de JS:
Cita:
Alguien sabría decirme como poner una imagen de fondo al hacer un MouseOver y otra al hacer un MouseOut?$(document).ready(function(){
$("#menuv a").click(function(){
$(this).blur();
});
//When mouse rolls over
$("#menuv li").mouseover(function(){
$(this).stop().animate({width:'200px'},{queue:fals e, duration:600, easing: 'easeOutBounce'})
});
//When mouse is removed
$("#menuv li").mouseout(function(){
$(this).stop().animate({width:'80px'},{queue:false , duration:600, easing: 'easeOutBounce'})
});
});
$("#menuv a").click(function(){
$(this).blur();
});
//When mouse rolls over
$("#menuv li").mouseover(function(){
$(this).stop().animate({width:'200px'},{queue:fals e, duration:600, easing: 'easeOutBounce'})
});
//When mouse is removed
$("#menuv li").mouseout(function(){
$(this).stop().animate({width:'80px'},{queue:false , duration:600, easing: 'easeOutBounce'})
});
});
Gracias!