function scroller(){

pd_top=$("#members-list-body div:first-child").css("paddingTop").slice(0,-2)*1;
pd_bottom=$("#members-list-body div:first-child").css("paddingBottom").slice(0,-2)*1;

$("#members-list-body div:first-child").animate(
	{marginTop: -$("#members-list-body div:first-child").height()-(pd_top+pd_bottom) },
	45*$("#members-list-body div:first-child").height(),
	"linear",
	function () {
		var curdiv = $("#members-list-body div:first-child");
		curdiv.css('margin-top','0');
		curdiv.appendTo("#members-list-body");
		scroller();
  });
}

$(document).ready(function(){
	scroller();
});
