// 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);
		}
	});
	
	var annonce = function() {
		var startPos = $('annonce').getStyle('left');
		myFx.start(startPos, -803);
	}
	
	// agenda
	var agenda = function() {
		new Fx.Accordion($('agenda_tous'), '#agenda_tous h2', '#agenda_tous .agenda_content');
	}
	
	// livre d'or
	var lor = function() {
		new Fx.Accordion($('or_tous'), '#or_tous h2', '#or_tous .or_content');
	}
	
	// exec
	if( $chk( $('annonce') ) ) annonce();
	if( $chk( $('annonce') ) ) annonce.periodical(30500);
		
	if( $chk( $('agenda_tous') ) ) agenda();
	if( $chk( $('or_tous') ) ) lor();


});

























