$(function(){ $('body').running(); $(window).bind("scroll",function(){ var top=$(window).scrolltop(); $('.list .item').each(function(){ if ($(this).offset().top -top< $(window).height() - 200){ $('.list .item').removeclass('selected'); $(this).addclass('selected'); }; }) }); })