$(document).ready(function() {
	// Start updating pl credits
	if (global.bIsPlLogged) {
		$("#daublettsField").html("Loading...");
		GetPlFreePoints( OnGetDaubletts );
	}
	
});

var plDaublettsTimer = -1;

function OnGetDaubletts(daubletts) {
	if (daubletts != "") {
		// Successfull call, continue getting credits
		if (plDaublettsTimer == -1) {
			// First call, start timer
			plDaublettsTimer = self.setInterval(function() {
				GetPlFreePoints( OnGetDaubletts ); 
			}, global.tsMoney);
		}
		// Update money
		$("#daublettsField").html(daubletts);
	} else {
		// Stop timer
		if (plDaublettsTimer != -1) {
			window.clearInterval(plDaublettsTimer);
		}
		$("#daublettsField").html("N/A");
	}
}

