jQuery(function($){
	var url = POINT_CTX+'/user/score-subscribe.action?uid='+ENCRYPT_USER_ID+'&format=json&jsoncallback=?';
	$.getJSON(url,function(data){
		$('#allscroe').text('￥'+data.allscroe);
		var scroetop_arr = data.scroetop_arr;
		var html = '';
		for(var i=0;i<scroetop_arr.length;i++) {
			var userid = scroetop_arr[i].userid;
			var username = scroetop_arr[i].username;
			var userscore = scroetop_arr[i].userscore;
			var timedifference = scroetop_arr[i].timedifference;
			html += '<li><a href="'+CTX+'/user/view!profile.dhtml?vuid='+userid+'" class="p_r_5" target="_blank">'+username+'</a><span class="left"><label class="p_5">+'+userscore+'</label>元</span><span class="right">'+timedifference+'</span></li>';
		};
		$('#scroetop').html(html);
	});
});