jQuery(function($) { $('.sidebar-primary .widget:last-child').waypoint(function(direction) { if (direction == 'up') { $(this).removeClass( 'fadeIn' ).addClass( 'fadeOut' ); } else { $(this).removeClass('fadeOut').addClass( 'animated fadeIn' ); } }, { offset: '50%', }); });