function loadPage(pid){
	//$('#main').empty();
/*	$('#load').show();
	$('#main').load("pages/"+pid+".html#top");
	window.scrollTo(0, $('#main').position().top);
	$('#load').hide();	*/
	var id = 0;
	$('#main').html('<p><img src="images/ajax_loading.gif" alt="load" name="load" width="43" height="11" id="load" style="z-index:999;position:absolute;"/></p>');
	$( 'html, body' ).animate( { scrollTop: 0 }, 'slow' ); 
	$.ajax({
		   type: "POST",
		   url: "pages/"+pid,
		   data: "",
		   success: function(html){
			$('#main').html('');   
			$("#main").html(html);		
		  }
		 });
	if(pid=='visa.php'){
		id	= 5;
	}else if(pid=='bali-pratique.php'){
		id	= 6;
	}else if(pid=='Abecedaire.php'){
		id	= 7;
	}else if(pid=='historie.php'){
		id	= 8;
	}else if(pid=='dictionnaire.php'){
		id	= 9;
	}else if(pid=='climat.php'){
		id	= 10;
	}else if(pid=='emploi.php'){
		id	= 11;
	/*}else if(pid=='newclient.php'){*/
	}else if(pid=='contactus.php'){
		id	= 12;
	}else if(pid=='contactus.php'){
		id	= 13;
	}else{
		id	= '';
	}
	$.ajax({
	   type: "POST",
	   url: "bannerleft.php",
	   data: "level="+id+"&show=0",
	   success: function(html){
		$('#banner-left').html('');   
		$("#banner-left").html(html);		
	  }
	 });
	$.ajax({
	   type: "POST",
	   url: "bannerright.php",
	   data: "level="+id+"&show=0",
	   success: function(html){
		$('#banner-right').html('');   
		$("#banner-right").html(html);		
	  }
	 }); 
	$.ajax({
	   type: "POST",
	   url: "bannertop.php",
	   data: "level="+id+"&show=0",
	   success: function(html){
		$('#banner-top').html('');   
		$("#banner-top").html(html);		
	  }
	 });
	$.ajax({
	   type: "POST",
	   url: "bannerbottom.php",
	   data: "level="+id+"&show=0",
	   success: function(html){
		$('#bottom-banner').html('');   
		$("#bottom-banner").html(html);		
	  }
	 });
}
