$(document).ready(function(){
	$("#sidebar2 li").hover(function(){
		$(this).css("backgroundImage","url(images/pulsante_over.png)");								   
   },function(){
		$(this).css("backgroundImage","url(images/pulsante.png)");			   
   });	
		
});