$(document).ready(function() {

  // Slideshow
  $('#slideshow').cycle({ delay: 3000});

  // Menu déroulant
  $('#navigation ul.parent').superfish({ 
    animation: {opacity:'show',height:'show'},
    speed: 'fast',
    autoArrows: false,
    dropShadows: false 
  });
  
  // Colorbox
  $('a.colorbox').colorbox({
    current: 'image {current} sur {total}',
    previous: 'précédente',
    next: 'suivante',
    close: 'fermer'
  });
  
  // Année
  $('#anneeselect select').change(function() {
    window.location = 'actions.php?annee=' + $(this).val();
  });
  
});
