jQuery(document).ajaxStop(function(){
	$("#loading").hide();
})

function refreshpg () {
	$("#activepanel").load("http://missingno.ka-blooey.net/actions/activepanel.php");
	$("#partypanel").load("http://missingno.ka-blooey.net/actions/partypanel.php");
}

function changeatk (ATK,TRAINER) {
	$("#loading").show();
	$.post("http://missingno.ka-blooey.net/actions/updateparty.php", { attack: ATK, trainerid: TRAINER }, function(){refreshpg();} );
}

function update (PKMN,TRAINER) {
	$("#loading").show();
	$.post("http://missingno.ka-blooey.net/actions/updateparty.php", { pokemon: PKMN, trainerid: TRAINER }, function(){refreshpg();});
}
