$(document).ready(function(){  
  $('#panier_header').hide();
  if ( $.cookie('animation') != 'animee' )
  {
    $('#panier').hide();
    $('#header_anime').cycle({
      speed:2000,
      timeout:1000,
      autostop:3,
      end:  cycleAfter
      });
  }
  else
  {
    $('.header_hide').hide();
    $('#panier_header').show();
  }
  $('#animer').cycle({speed:5000, timeout:1000, autostop:3});  
  $('#animerevent').cycle({speed:5000, timeout:1000});  
});

function cycleAfter()
{
  $.cookie('animation', 'animee', { path: '/', expires: 1 });
}