I want to set background-color with jQUery animate function and i need to pick a random element from array.
$(".menu li").hover(function() {
$(this).animate({borderBottomColor:"#81C6DD"}, 200)
}, function() {
$(this).animate({borderBottomColor:"#D8D9DC"}, 200)
});