function changeSection(sectionId){
if(sectionId== 1){
$('b-elementaire').style.backgroundPosition="left top";
$('b-elementaire').style.zIndex= 10;
$('b-secondaire').style.backgroundPosition="left bottom";
$('b-secondaire').style.zIndex= 0;
if($('elementaire').style.display !="block" ){
$('elementaire').show();}
if($('secondaire').style.display !="none" ){
$('secondaire').hide();}} else if(sectionId== 2){
$('b-elementaire').style.backgroundPosition="left bottom";
$('b-elementaire').style.zIndex= 0;
$('b-secondaire').style.backgroundPosition="left top";
$('b-secondaire').style.zIndex= 10;
if($('secondaire').style.display !="block" ){
$('secondaire').show();}
if($('elementaire').style.display !="none" ){
$('elementaire').hide();}}
return false;}
