(function($){
  var url = /(.*?)(#.*$)/.exec( window.location.href );
  if ( url && $.inArray( url[2], [ "#onglet-1", "#onglet-2", "#onglet-3", "#onglet-4" ] ))
  {
    window.location = url[1];
  }

  // dom ready
  $( function(){
    var $fiches   = $( '.fiches' );
    var ficheArr  = $( '.fiche', $fiches );
    var $tabs     = $( '#menu-fiche a' );
    ficheArr.hide();

    $( $tabs[0] ).parents( 'li' ).addClass( 'active' );
    $( ficheArr[0] ).show();
    $fiches.data( 'index', 0 );

    $tabs.click( function(){ 
      var lastIndex = $fiches.data( 'index' )
      var index = $.inArray( this, $tabs );

      $( $tabs[ lastIndex ] ).parents( 'li' ).removeClass( 'active' );
      $( ficheArr[ lastIndex ] ).hide();

      $( $tabs[ index ] ).parents( 'li' ).addClass( 'active' );
      $( ficheArr[ index ] ).slideDown( 'fast' );
      $fiches.data( 'index', index );
      return false;
    });
  });
})(jQuery);

