/*
Theme Name:     Archies Progression Child
Description:    Child Theme for Archies Theme
Author:         Progression Studios
Template:       archies-progression

*/
/* Random Sort */
window.addEventListener('load', function(){
  let elmRandom = document.querySelector('.random-col > .swell-block-columns__inner');
  for(let i = elmRandom.children.length; i >= 0; i--){
    elmRandom.appendChild(elmRandom.children[Math.random()*i|0]);
  }
});
