function afficher_ref(id_site) {

	$.get("actions/ajax_afficher_ref.php", {id_site: id_site} , function(output) {
					
					$('div#right').fadeOut("fast",function(){
						$('div#right').empty();
					});
					//Affichage des resultats
					$('div#right').fadeIn("fast",function(){
						$('div#right').html(output);
					}); 
					
			});
}

var page = 1;

function ref_suivante() {
	
	page = page+1;
	
	$.get("actions/ajax_ref_suivante.php", {page: page} , function(output) {
					
					$('div#content_liste').fadeOut("fast",function(){
						$('div#content_liste').empty();
					});
					//Affichage des resultats
					$('div#content_liste').fadeIn("fast",function(){
						$('div#content_liste').html(output);
					}); 
					
			});
}

function ref_precedente() {
	
	page = page-1;
	
	$.get("actions/ajax_ref_precedente.php", {page: page} , function(output) {
					
					$('div#content_liste').fadeOut("fast",function(){
						$('div#content_liste').empty();
					});
					//Affichage des resultats
					$('div#content_liste').fadeIn("fast",function(){
						$('div#content_liste').html(output);
					}); 
					
			});
}