// JavaScript Document

window.addEvent('domready', function() {
	// def / fct
	var myFx = new Fx.Tween('annonce', {
		duration: 30000,
		transition: 'linear',
		link: 'cancel',
		property: 'left', 
		onComplete : function() {
			$('annonce').setStyle('left', 803);
		}
	});
	
	// agenda
	var agenda = function() {
		new Fx.Accordion($('agenda_tous'), '#agenda_tous h2', '#agenda_tous .agenda_content');
	}
	
	// exec		
	if( $chk( $('agenda_tous') ) ) agenda();
});

























