/*
 * Adaptation pour le Squelette SPIP
 * Ce fichier peut également contenir toutes les scripts custom
 * @requires jQuery v1.4 or later
*/
$(document).ready(function() {
	$('a.fancybox').fancybox({
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'titlePosition' : 'inside',
		'speedIn'		: 300, 
		'speedOut'		: 300 
							   
	});
	$("#accordion").accordion({
		collapsible: true,
		active: false,
		autoHeight: false
	});
	$("#contenu-tabs").tabs({
		fx: { opacity: 'toggle' }
	});
	
	$(document).pngFix();
});
	

