function ajaxNavigate(u,t){
 t=(t==null)?'ajax-reload':t;
 //new Ajax.Updater(t, u,{method: 'get', onComplete: function(){Effect.ScrollTo(t);}});
 new Ajax.Request(u,{method: 'get',
  onCreate: function(){
   $('loading').show();
  },
  onSuccess:function(xhr,j){
   $(t).innerHTML=xhr.responseText;
   if(j.titrePage!=null)document.title=j.titrePage;
   if(j.sousTitrePage!=null)$('sousTitre').innerHTML=j.sousTitrePage;
   $('loading').hide();
  },
  onFailure:function(){$('loading').hide();},
  onComplete: function(){
      if($('sousTitre')!=null) {
      Effect.ScrollTo('sousTitre');
      }
      $('loading').hide();
  }
//  ,parameters: {is_ajax:1}
 });
 return false;
}
