

$(document).ready(function () {

	// carousel
	jQuery('#carousel, #sanscarousel').jcarousel({
		scroll:3,
		wrap:'both'
	});
	
	$('#sanscarousel').parent().siblings('.jcarousel-next, .jcarousel-prev').css({background:'#E44626', cursor:'text'});

	// fancybox : agrandissement
	$("a.zoom").fancybox({
		'margin'		:	160,
		'speedIn'		:	400,
		'speedOut'		:	400,
		'padding'		:	0,
		'overlayOpacity'	:	.7,
		'showCloseButton'	:	false,
		'transitionIn'		:	'none',
		'transitionOut'		:	'none',
		'changeFade'		:	'fast',
		'overlayColor'		:	'#000000'
	});
	
	$('a.spip_out').attr("title","ouvre une nouvelle fenêtre").click( function() {
		window.open( $(this).attr('href') );
		return false;
	});


});





