var mapTmp;
$(document).ready(function() {
	ajax_bloc_profil('/includes/modules/bloc_profil/bloc_photo/index.php','bloc_photo');
	ajax_bloc_profil('/includes/modules/bloc_profil/bloc_blog/index.php','bloc_blog');
	ajax_bloc_profil('/includes/modules/bloc_profil/bloc_forum/index.php','bloc_forum');
	$("#link_add_ami").fancybox({ 'frameWidth':400, 'frameHeight':160, 'overlayShow':true });
	$("#link_remove_ami").fancybox({ 'frameWidth':400, 'frameHeight':160, 'overlayShow':true });
	ajax_bloc_profil('/includes/modules/membres/bloc_ami/index.php','bloc_ami');
	$("#link_give_points").fancybox({ 'frameWidth':400, 'frameHeight':172, 'overlayShow':true });
	goMap();
	
});
function ajax_bloc_profil(url,cible) {
	var id = document.getElementById("id_profil").innerHTML;
	$.post(url, { id: id }, function(data){
		document.getElementById(cible).innerHTML = data;
	});
}