function scrollTKlubiPlus(){
	var H = $('#tKlubiPlus').height();
	var top = $('#tKlubiPlus').css("top");
	var arr = top.split("px");
	var top = arr[0];
	top = top - 1;
	if ( (H + top) < 0) top = 60;
	$('#tKlubiPlus').css("top", top+"px");
	//alert(H+" : "+arr[0]);
}
$(document).ready( function(){

	$('#tKlubiPlus').load('/adds/tKlubiPlus.php', function(){
		var intID = setInterval(scrollTKlubiPlus, 120);
		/*
		$('#tKlubiPlus').animate({
			top: "-"+H+"px"
		}, {
			duration: 30000
		}
		);
		*/
	});

});
