$(".block li").hover(
function(){
$(this).animate({backgroundColor: "#000"});
},
function(){
$(this).animate({backgroundColor: "#fff"});
}
);
Need to change #fff to no color. Animation should occur from #000 to transparent.
Any solution?