$(document).ready(function(){
function Run()
{
	var x=($("#SLIN").find("table tr").length-1)*100+20;
	$("#SLIN").fadeTo(400,1);
	$("#SLIN").delay(4000).fadeTo(300,0.01);
	$("#SLIN").animate({"top":"-=100"},0,Run);
	if($("#SLIN").position().top<-x)
	{
		$("#SLIN").css("top","0px")
	};
};
Run();

});
