var tn_count=0;var tn_pos;var tn_last=false;var tn_load=false;$(window).scroll(function(){if(tn_last)return false;var e=60;var t=$(document).scrollTop();if($(document).scrollTop()+e+$(window).height()-$(document).height()>0&&t>tn_pos&&!tn_load){tn_load=true;$("#loadbar").css("display","inline");tn_count++;$.ajax({type:"POST",url:"team_news.phtml",data:"newsAction=reload&first_news="+10*tn_count,success:function(e){if(e.indexOf("TIMEOUT#")==0){window.location=e.substr(8);return}tn_num=parseInt(e.substring(0,e.indexOf(";")));if(!isNaN(tn_num)&&tn_num<10)tn_last=true;$("#postwrap").append(e.substr(e.indexOf(";")+1));$("#loadbar").css("display","none");tn_load=false},error:function(){$("#loadbar").css("display","none");tn_load=false}})}tn_pos=t})