window.addEvent('domready', cacher);
window.addEvent('domready', animations);

function cacher() {
	if($('box_texte_1'))
		$('box_texte_1').setStyle('opacity', 0);
	if($('box_texte_2'))
		$('box_texte_2').setStyle('opacity', 0);
	if($('box_texte_3'))
		$('box_texte_3').setStyle('opacity', 0);
	if($('box_texte_4'))
		$('box_texte_4').setStyle('opacity', 0);
	if($('box_texte_hotel'))
		$('box_texte_hotel').setStyle('opacity', 0);
}

function animations() {
	if($('box_texte_1')) {
		$('box_texte_1').setStyle('opacity', 1);
		new Fx.Tween('box_texte_1', {transition: Fx.Transitions.Expo.easeOut, duration: 900}).set('marginLeft', -500).start('marginLeft', 0);
	}
	if($('box_texte_2')) {
		$('box_texte_2').setStyle('opacity', 1);
		var anim = function() { new Fx.Tween('box_texte_2', {transition: Fx.Transitions.Expo.easeOut, duration: 900}).set('marginLeft', -500).start('marginLeft', 0); }
		anim.delay(100);
	}
	if($('box_texte_3')) {
		$('box_texte_3').setStyle('opacity', 1);
		var anim = function() { new Fx.Tween('box_texte_3', {transition: Fx.Transitions.Expo.easeOut, duration: 900}).set('marginLeft', -500).start('marginLeft', 0); }
		anim.delay(200);
	}
	if($('box_texte_4')) {
		$('box_texte_4').setStyle('opacity', 1);
		var anim = function() { new Fx.Tween('box_texte_4', {transition: Fx.Transitions.Expo.easeOut, duration: 900}).set('marginLeft', -500).start('marginLeft', 0); }
		anim.delay(300);
	}
	if($('box_texte_hotel')) {
		$('box_texte_hotel').setStyle('opacity', 1);
		new Fx.Tween('box_texte_hotel', {transition: Fx.Transitions.Expo.easeOut, duration: 900}).set('marginLeft', -500).start('marginLeft', 0);
	}
}