/**
 * 
 */
$(document).ready(function() {
	getCurrentleaders();
});
function getCurrentleaders()
{
	$.ajax({
		type: "GET",
		url:"/php-pub/ajax_tphomepage.php",
		dataType: "text",
		success: showResult,
		error: errorMsg
		});
}
function showResult(xml)
{
	$("#trackpromo").empty();
	$("#trackpromo").append(xml);
}
function errorMsg()
{
	$("#trackpromo").empty();
	$("#trackpromo").append("Error getting track promoleaders");
}

