

// Fonction pour ouvrir un lien dans un nouvel onglet / page

$(document).ready(function(){
	$(".external-link").click(function(event){
	  event.preventDefault();
	  window.open($(this).attr('href'));
	});
	
	// Fancybox
	$("a[rel='fancy']").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over'
			});
	
	// gallery
	$("a.gallery").gallery();
});


