$(document).ready(function() {
	//getTopMembres("top");
	if(typeof(gmap)!="undefined" && gmap==1) goMap();
	$('#link_others').fancybox({ 'frameWidth':500, 'frameHeight':500, 'overlayShow':true });
});

function getTopMembres(type){
	$.post("/includes/modules/membres/getTop.php", { type: type, niveau:getId("type_top_hidden").innerHTML, id:getId("id_top_hidden").innerHTML  }, function(data){
		document.getElementById("liste_membres").innerHTML = data;
	});
}

function save_info_map(idPays){
	var mapCenter=mapTmp.getCenter();
	var mapZoom=mapTmp.getZoom();
	$.post("/includes/modules/editMapPays.php", { idPays: idPays, lat: mapCenter.y, long: mapCenter.x, zoom: mapZoom }, function(data){
		$("#statut_save_map").html(data);
	});

}

