window.addEvent('domready', function() {
	var el = $('myElement');
	
/*

				<li><a id="general puce1" href="#" class="checked">Gˇnˇral</a></li>
				<li><a id="actualite puce2" href="#" >Actualitˇs</a></li>
				<li><a id="renconrtes puce3" href="#" >Rencontres</a></li>
			</ul>
			<ul class="right">
				<li><a id="videos puce4" href="#" >Vidˇos</a></li>
				<li><a id="parle puce5" href="#" >On parle de nous</a></li>
				<li><a id="team puce6" href="#" >Le mot de la Team</a></li>
				
				*/

/********* gestion du menu *********/

	$('general').addEvent('click', function(e) {
		e.stop();
		$('text').load('data/menu/general.html');
		$('general').style.backgroundImage="url('img/puces/blanc.png')";
		$('actualite').style.backgroundImage="none";
		$('rencontres').style.backgroundImage="none";
		$('videos').style.backgroundImage="none";
		$('parle').style.backgroundImage="none";
		$('team').style.backgroundImage="none";

	});

	$('actualite').addEvent('click', function(e) {
		e.stop();
		$('text').load('data/menu/actualite.html');
		$('general').style.backgroundImage="none";
		$('actualite').style.backgroundImage="url('img/puces/blanc.png')";
		$('rencontres').style.backgroundImage="none";
		$('videos').style.backgroundImage="none";
		$('parle').style.backgroundImage="none";
		$('team').style.backgroundImage="none";

	});

	$('rencontres').addEvent('click', function(e) {
		e.stop();
		$('text').load('data/menu/rencontres.html');
		$('general').style.backgroundImage="none";
		$('actualite').style.backgroundImage="none";
		$('rencontres').style.backgroundImage="url('img/puces/blanc.png')";
		$('videos').style.backgroundImage="none";
		$('parle').style.backgroundImage="none";
		$('team').style.backgroundImage="none";

	});

	$('videos').addEvent('click', function(e) {
		e.stop();
		$('text').load('data/menu/videos.html');
		$('general').style.backgroundImage="none";
		$('actualite').style.backgroundImage="none";
		$('rencontres').style.backgroundImage="none";
		$('videos').style.backgroundImage="url('img/puces/blanc.png')";
		$('parle').style.backgroundImage="none";
		$('team').style.backgroundImage="none";

	});

	$('parle').addEvent('click', function(e) {
		e.stop();
		$('text').load('data/menu/parle.html');
		$('general').style.backgroundImage="none";
		$('actualite').style.backgroundImage="none";
		$('rencontres').style.backgroundImage="none";
		$('videos').style.backgroundImage="none";
		$('parle').style.backgroundImage="url('img/puces/blanc.png')";
		$('team').style.backgroundImage="none";

	});

	$('team').addEvent('click', function(e) {
		e.stop();
		$('text').load('data/menu/team.html');
		$('general').style.backgroundImage="none";
		$('actualite').style.backgroundImage="none";
		$('rencontres').style.backgroundImage="none";
		$('videos').style.backgroundImage="none";
		$('parle').style.backgroundImage="none";
		$('team').style.backgroundImage="url('img/puces/blanc.png')";

	});

	
/****
	$('ssmenu').addEvent('mouseout', function(e) {
		e.stop();
		$('ssmenu').load('html/menu/index.php');
		$('particulier').style.backgroundImage="url('img/index/particulier.gif')";
		$('industrie').style.backgroundImage="url('img/index/industrie.gif')";
		$('negociant').style.backgroundImage="url('img/index/negociant.gif')";
	});
*/	
	


});