window.addEvent('domready', function(){



	/* ========== Effet du logo poweredBy  ========== */
	

	$('poweredBy').set('tween', {duration: 200, transition: Fx.Transitions.Quad.easeInOut}).addEvents({
		'mouseenter': function(){
			this.tween('left', 25);
		},
		'mouseleave': function(){
			this.tween('left', 30);
		}
	})

/* ========== Effet sur le bouton moderne  ========== */
	
	$('boutonJeepModerne').set('tween', {duration: 200, transition: Fx.Transitions.Quad.easeInOut}).addEvents({
		'mouseenter': function(){
			this.tween('top', 440);
		},
		'mouseleave': function(){
			this.tween('top', 452);
		}
	})
	
	/* ========== Effet sur le bouton militaire  ========== */
	
	$('boutonJeepMilitaire').set('tween', {duration: 200, transition: Fx.Transitions.Quad.easeInOut}).addEvents({
		'mouseenter': function(){
			this.tween('top', 440);
		},
		'mouseleave': function(){
			this.tween('top', 452);
		}
	})
	
	/* ========== Effet sur le bouton horaire  ========== */
	
	$('boutonHoraireAcces').set('tween', {duration: 200, transition: Fx.Transitions.Quad.easeInOut}).addEvents({
		'mouseenter': function(){
			this.tween('top', 540);
		},
		'mouseleave': function(){
			this.tween('top', 550);
		}
	})
	
});
