Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/06/2011, 07:31
kugxel
 
Fecha de Ingreso: junio-2011
Mensajes: 7
Antigüedad: 12 años, 10 meses
Puntos: 0
¿Cambiar Imagen Animación Menú JS?

Hola,
Tengo este menú de JS:

Cita:
$(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'})
});

});
Alguien sabría decirme como poner una imagen de fondo al hacer un MouseOver y otra al hacer un MouseOut?

Gracias!