// JavaScript Document

///// showMenuPage ////////////////////////////////////////////////////////////////////////////////////
function showMenuPage(pageid) {
	$("#pageid").val(pageid);
	$.ajax({
  		cache: false,
		url: 'menu/menuhandler.php',
  		data: {action: 'showMenuPage', pageid: pageid},
  		dataType: 'html',
		type: 'post',
  		success: function(data) {showMenuPageResponse(data, pageid);},
  		error: function(data) {alert("Error: "+data);}
	});
}

function showMenuPageResponse(data, pageid) {
	parseddata = JSON.parse(data);
	
	$("#topproviders").html(parseddata.page.topdata.providers);
	$("#topsubscriptions").html(parseddata.page.topdata.subscriptions);
	$("#toplastupdated").html(parseddata.page.topdata.lastupdated);

	$("#intro").html(parseddata.page.introsource.source);

	$("#content").html(parseddata.page.contentsource.source);
}

