$(document).ready(function () {		
		//alert("Ready");
		var lang=document.getElementById("lang").value;		
	    $.history.init(pageload);		    
		//$('a[href=' + window.location.hash + ']').addClass('selected');				
		$('a[rel=ajax]').click(function () {				
			hash = this.href;
			hash = hash.replace(/^.*#/, '');
			//alert("Cilck sur : "+hash);
	 		$.history.load(hash);		
	 		$('a[rel=ajax]').removeClass('selected');
	 		$(this).addClass('selected');
			//alert("be4");
	 		$('.loading').show();
			//alert("aff4");
			$('#content').html('');		
	 		$('#body').hide();		
			getPage();					
			return false;
		});	
		$(function(){
			$(".aller_haut").scrollToTop({speed:1000,ease:"easeInBack",start:0});
		});
	});	
	function pageload(hash) {
		if (hash);else hash="#Home";
		hash_tp = hash.replace(/^.*#/, '');
		//alert("check => hash = "+hash_tp);		
		//$('a[rel=ajax]').removeClass('selected');
	 	$('a[rel=ajax]').removeClass('selected');
		var elt=document.getElementById(hash_tp);
		var myClassAttr = $(elt).attr("class"); 
		if(myClassAttr)
			if(myClassAttr.search("selected")<0){
				//pas de selected
				$(elt).addClass('selected');
			}
		var chcao_init=$('#content').height();	
	//	alert(chcao_init);
		//document.getElementById("VietNam_map").src="images/bandomapVN1.gif";
		getPage(); 			
	}		
	function getPage() {		
		var lang=document.getElementById("lang").value;
		var data = 'page=' + encodeURIComponent(document.location.hash);		
		//alert("/ Aller à la "+data);
		$.ajax({
			url: "loader.php?lang="+lang,	
			type: "GET",		
			data: data,		
			cache: false,
			success: function (html) {					
				$('.loading').hide();			
				var chcaotruoc=$('#height_content').height();	
				$('#content').html(html);		
				$('#height_content').html(html);
				var chcao=$('#height_content').height();
				$('#height_content').html('');
				var chcaofinal=0;
				if(chcao<chcaotruoc && chcao<642)
					chcaofinal=642;
				else chcaofinal=chcao;
				$('#body').fadeIn('slow');
				//alert("End getPage:"+chcao+" ch cao trc: "+chcaotruoc);
				document.getElementById("content").style.height=chcaofinal+"px";
			}		
		});					
	}
