$(document).ready(function(){
	$.historyInit(function(hash){
		$("div.onglet_temoignage").hide();
		$("#"+hash).show();
	});
	
	$("a.onglet_title").click(function(){	
	   var hash = this.href;	       
	   hash = hash.replace(/^.*#/, '');	      
	   $.historyLoad(hash);	       
	   return false;
	 }); 

});