<audio controls id="beep-two" preload="auto">
<source src="https://clck.ru/Eq8rk" controls>
Your browser isn't invited for super fun audio time.
</audio>
<style>
audio {
display:none;
}
</style>
<script>
$(".t420 li")
.each(function(i) {
if (i != 0) {
$("#beep-two")
.clone()
.attr("id", "beep-two" + i)
.appendTo($(this).parent());
}
$(this).data("beeper", i);
})
.mouseenter(function() {
$("#beep-two" + $(this).data("beeper"))[0].play();
});
$("#beep-two").attr("id", "beep-two0");
</script>