function open_membre(m_id)
  {
	$('#memberBox').load("library/ajax/infoMembre.php",{id_membre:m_id},launchBox);
  }
function launchBox()
  {
	$('#memberBox').box();
	centerPopup('#memberBox');
  }

var k=0;
function rand_membre(){
	if($('input#idMembre').val()!=undefined)
	  {k = $('input#idMembre').val();}
	$("#rand").hide('blind',300,function() 
	  {
		$("#rand").load(
		  "library/ajax/randMembre.php",
		    {'k':k},
		  function()
		    {$("#rand").show('blind',500,Timer);}
		  );
	  }
	);
	//html("");
	//$("#rand").load(site_url+"/randMembre.php?k="+k);
	//Timer();
}

function Timer(){   //Boucle de 10 seçondes 
	k++;
   timeoutID = window.setTimeout("rand_membre()",10000);
}

function centerPopup(element) {
	var posY=($(window).height()/2)-($(element).height()/2)+$(window).scrollTop();
	var posX=($(window).width()/2)-($(element).width()/2)+$(window).scrollLeft();
	$(element).css('top',posY+"px");
	$(element).css('left',posX+"px");
}
