$(document).ready(function(){
   
   $('#nav a').mouseover(function(){
     $(this).siblings("span").animate({ height: 'show', opacity: 'show' }, 'fast');
   });
   $('#nav a').mouseout(function(){
     $(this).siblings("span").animate({ height: 'hide', opacity: 'hide' }, 'fast');
   });
   
   $('#thumbnails a').fancybox({ 
   		'hideOnContentClick': true,
   		'zoomSpeedIn':	400, 
		'zoomSpeedOut':	0, 
		'overlayShow':	true
   	}); 
   $('#artiste-intro a').fancybox({ 
   		'hideOnContentClick': true,
   		'zoomSpeedIn':	400, 
		'zoomSpeedOut':	0, 
		'overlayShow':	true
   	}); 
   
 });
