wp_enqueue_script( 'sajo-slick', get_template_directory_uri() . '/assets/js/slick.min.js', array(), 1.0, true );
$(document).ready(function() {
setBallsSize();
});
$(window).resize(function() {
setBallsSize();
})
function setBallsSize() {
setTimeout(function () {
var ballWidth = $('.ball_row1 .ball_image').width();
$('.ball_row2 img').each(function() {
$(this).css('width', ballWidth);
});
}, 200);
}
list($first_cat, $second_cat) = array_chunk($categories, ceil(count($categories)/2));