(function($) {
$(document).ready(function () {
$("video, audio").mediaelementplayer();
$('.ce-image').each(function(){
$(this).remove();
});
$(".slider").each(function() {
sliderId = $(this).attr('id');
$('#' + sliderId).responsiveSlides({
auto: $(this).data('autoplay'),
pager: false,
nav: true,
speed: 500,
timeout: $(this).data('timeout'),
namespace: 'slider'
});
});
});
})(jQuery);