$(document).ready( function () { 
    // On cache les sous-menus : 
	
	//lightbox
	$(".gallery-icon a").attr("rel","group");
	$(".gallery-icon a").fancybox({
		'speedIn'		:	300, 
		'speedOut'		:	150, 
		'overlayColor'	:	'#000',
		'overlayOpacity' :	0.85,
		'padding'		: 0,
		'margin'		: 60
	});
	
	
	
	var count = 0;	
	$('.breadcrumbs a').each( function () {
		// On stocke le contenu du a :
		if(count!=0){
			var TexteSpan = $(this).text();
			$(this).replaceWith('<span>'+TexteSpan+'</span>') ;
		}
		count++;
	} ) ;
	
	
});
