function oninit1(){
	$("theme1").observe('mouseover', function() {
		$("thematique").removeClassName('theme2');
		$("thematique").removeClassName('theme3');
		$("thematique").removeClassName('theme4');
		$("thematique").removeClassName('theme5');
		$("thematique").addClassName('theme1');
	});
	$("theme2").observe('mouseover', function() {
		$("thematique").removeClassName('theme1');
		$("thematique").removeClassName('theme3');
		$("thematique").removeClassName('theme4');
		$("thematique").removeClassName('theme5');
		$("thematique").addClassName('theme2');
	});
	$("theme3").observe('mouseover', function() {
		$("thematique").removeClassName('theme1');
		$("thematique").removeClassName('theme2');
		$("thematique").removeClassName('theme4');
		$("thematique").removeClassName('theme5');
		$("thematique").addClassName('theme3');
	});
	$("theme4").observe('mouseover', function() {
		$("thematique").removeClassName('theme1');
		$("thematique").removeClassName('theme2');
		$("thematique").removeClassName('theme3');
		$("thematique").removeClassName('theme5');
		$("thematique").addClassName('theme4');
	});
	$("theme5").observe('mouseover', function() {
		$("thematique").removeClassName('theme1');
		$("thematique").removeClassName('theme2');
		$("thematique").removeClassName('theme3');
		$("thematique").removeClassName('theme4');
		$("thematique").addClassName('theme5');
	});
}
