function fnc_reload_money(userId) {

	$ = window.parent.$;

	ar_lt = $('#litai').html().split(' ');
	ar_ll = $('#lotto-litai').html().split(' ');
	ar_lf = $('#lotto-fix').html().split(' ');
	
	ar_lt.shift();
	ar_ll.shift();
	ar_lf.shift();
	
	lt = ar_lt.join(' ');
	ll = ar_ll.join(' ');
	lf = ar_lf.join(' ');
	
	url = "/get_litas.php";
	data = "userId=" + userId;
	
	$.ajax({
		type: "POST",
		url: url,
		data: data,
		success: function(msg){
			ar_litas = msg.split('::');
			$('#litai').html(ar_litas[0] + ' ' + lt);
			$('#lotto-litai').html(ar_litas[1] + ' ' + ll);
			$('#lotto-fix').html(ar_litas[2] + ' ' + lf);
		},
		error: function(){
			alert("error");
		}
	});
	
}
