M
function toNext(ele) {
var ancestor = ele.parentElement.parentElement;
var next = ancestor.nextElementSibling;
ancestor.classList.add("fadeOut");
setTimeout(function() {
ancestor.style.display = "none";
}, 490)
setTimeout(function() {
next.classList.add("fadeIn");
next.style.display = "block"
}, 500)
}