// JavaScript Document
// Animations pour sections texte site Claudine Doury
// Clement Val, mai 2009
$(document).ready(function(){
  $(".menu").fadeTo("slow", 0.3);
  $(".menu").hover(function(event){
    $(this).stop().fadeTo("slow", 1);
  },
  function(){
    $(this).stop().fadeTo("slow", 0.3);
  });
  $('.contenu_texte_large').jScrollPane();
  $('a.lightbox').lightBox();
});
