window.addEvent('domready', function(){


	var el0 = $('text0')
	var el1 = $('text1')
	var el2 = $('text2')
	var el3 = $('text3')

	el1.fade("hide");
	el2.fade("hide");
	el3.fade("hide");
	
	$('bouton1').addEvent('mouseenter', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el0.fade(0);
		el1.fade(1);
	});
	
	$('bouton1').addEvent('mouseleave', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el1.fade(0);
		el0.fade(1);
	});
	
	$('bouton2').addEvent('mouseenter', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el0.fade(0);
		el2.fade(1);
	});
	
	$('bouton2').addEvent('mouseleave', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el2.fade(0);
		el0.fade(1);
	});

	$('bouton3').addEvent('mouseenter', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el0.fade(0);
		el3.fade(1);
	});
	
	$('bouton3').addEvent('mouseleave', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el3.fade(0);
		el0.fade(1);
	});

	
	
});
