(function($) {
$(document).ready(function() {
setTimeout(function(){
$('.accordian h4 a').on('click', function(event) {
event.preventDefault();
$('html, body').animate({
scrollTop: $(event.target).parent().offset().top - 30
}, 400);
});
$('#see-more-articles').on('click', function(event) {
event.preventDefault();
$('html, body').animate({
scrollTop: $(event.target).parents('aside').offset().top
}, 400);
});
},500);
});
}(jQuery));

