(function($) {
$(document).ready(function() {
$('.news-ticker-posts .jet-listing-grid-item').each(function() {
var postTitle = $(this).find('.jet-listing-grid-item-title').text();
var postLink = $(this).find('.jet-listing-grid-item-title a').attr('href');
var listItem = '' + postTitle + ' ';
$('#news-ticker').append(listItem);
});
$('#news-ticker li:first-child').addClass('active');
setInterval(function() {
$('#news-ticker li.active').removeClass('active').next('li').addClass('active').end().appendTo('#news-ticker');
}, 5000); // adjust the timing (in milliseconds) as needed
});
})(jQuery);