//CARACOL- javascript



function ChargeNiveauMenu(url) {

	niveau=	url.charAt(7);
	chapitre1=	url.charAt(18);
	chapitre2=	url.charAt(19);
	
	if (chapitre2=='&') {
		chapitre=chapitre1;
	} else {
		chapitre= eval (chapitre1 + chapitre2);
	}
	
	if (niveau==1) {
		if (chapitre==1 || chapitre ==2) { // menu démarche
		$('menuPresta').style.display='none';
		$('menuRea').style.display='none';
		$('menuDema').style.display='block';
		$('menuRessou').style.display='none';
		$('menuContact').style.display='none';
		} else if (chapitre==3 || chapitre ==4) { // menu ressources
		$('menuPresta').style.display='none';
		$('menuRea').style.display='none';
		$('menuDema').style.display='none';
		$('menuRessou').style.display='block';
		$('menuContact').style.display='none';
		} else if (chapitre==5 || chapitre ==6 || chapitre ==7) { // menu prestations
		$('menuPresta').style.display='block';
		$('menuRea').style.display='none';
		$('menuDema').style.display='none';
		$('menuRessou').style.display='none';
		$('menuContact').style.display='none';
			if (chapitre==5) { // menu prestations/chantier
				new Fx.Slide('vertical_presta1').show();
				new Fx.Slide('vertical_presta11').hide();
				new Fx.Slide('vertical_presta12').hide();
				new Fx.Slide('vertical_presta13').hide();
			} else if (chapitre==6) { // menu prestations/étude
				new Fx.Slide('vertical_presta2').show();
				new Fx.Slide('vertical_presta21').hide();
				new Fx.Slide('vertical_presta22').hide();
			} else if (chapitre==7) { // menu prestations/formation
				new Fx.Slide('vertical_presta3').show();
				new Fx.Slide('vertical_presta31').hide();
				new Fx.Slide('vertical_presta32').hide();
			}
		} else if (chapitre==8 || chapitre ==9 || chapitre ==10) { // menu caracol
		$('menuPresta').style.display='none';
		$('menuRea').style.display='none';
		$('menuDema').style.display='none';
		$('menuRessou').style.display='none';
		$('menuContact').style.display='block';
		}
	}
	 if (niveau==2) {
		$('menuPresta').style.display='block';
		$('menuRea').style.display='none';
		$('menuDema').style.display='none';
		$('menuRessou').style.display='none';
		$('menuContact').style.display='none';
		if (chapitre==1 || chapitre ==2 || chapitre ==3) { // menu prestations/chantier
		 	if (chapitre==1) {
				new Fx.Slide('vertical_presta1').show();
				new Fx.Slide('vertical_presta11').show();
				new Fx.Slide('vertical_presta12').hide();
				new Fx.Slide('vertical_presta13').hide();
			} else if (chapitre==2) {
				new Fx.Slide('vertical_presta12').show();
				new Fx.Slide('vertical_presta1').show();
				new Fx.Slide('vertical_presta11').hide();
				new Fx.Slide('vertical_presta13').hide();
				
			} else if (chapitre==3) {
				new Fx.Slide('vertical_presta13').show();
				new Fx.Slide('vertical_presta1').show();
				new Fx.Slide('vertical_presta11').hide();
				new Fx.Slide('vertical_presta12').hide();
			}
		} else if (chapitre==4 || chapitre ==5) { // menu prestations/étude
			 if (chapitre==4) {
				new Fx.Slide('vertical_presta21').show();
				new Fx.Slide('vertical_presta2').show();
				new Fx.Slide('vertical_presta22').hide();
			} else if (chapitre==5) {
				new Fx.Slide('vertical_presta22').show();
				new Fx.Slide('vertical_presta2').show();
				new Fx.Slide('vertical_presta21').hide();
				
			} 
		} else if (chapitre==6 || chapitre ==7) { // menu prestations/formation
			if (chapitre==6) {
				new Fx.Slide('vertical_presta31').show();
				new Fx.Slide('vertical_presta3').show();
				new Fx.Slide('vertical_presta32').hide();
			} else if (chapitre==7) {
				new Fx.Slide('vertical_presta32').show();
				new Fx.Slide('vertical_presta3').show();
				new Fx.Slide('vertical_presta31').hide();
				
			}
		}
	 }
	
	
	
}
	
	
	
	
function ChargeMenu (url)
{
	var xhr_object = null; 
	if(window.XMLHttpRequest) // Firefox 
  		 xhr_object = new XMLHttpRequest(); 
	else if(window.ActiveXObject) // Internet Explorer 
   		xhr_object = new ActiveXObject("Microsoft.XMLHTTP"); 
	else { // XMLHttpRequest non supporté par le navigateur 
  		 alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
  		 return; 
	} 

	var file = url;
	
	xhr_object.open("POST", file, true); 

	xhr_object.onreadystatechange = function() { 
   		if(xhr_object.readyState == 4){
		$('receveur').style.display="none";
		$('content').style.display="block";
		$('content').innerHTML = xhr_object.responseText;
		$('choixImage').fade(0.5);
		$('encartStage').fade(0.5);
   		}
	}  
	xhr_object.send(null);
}


function ChangeImage () 
{
	var xhr_object2 = null; 
	if(window.XMLHttpRequest) // Firefox 
  		 xhr_object2 = new XMLHttpRequest(); 
	else if(window.ActiveXObject) // Internet Explorer 
   		xhr_object2 = new ActiveXObject("Microsoft.XMLHTTP"); 
	else { // XMLHttpRequest non supporté par le navigateur 
  		 alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
  		 return; 
	} 
	var file = "menu/eco/imageFond.php";
	
	xhr_object2.open("POST", file, true); 

	xhr_object2.onreadystatechange = function() { 
   		if(xhr_object2.readyState == 4){
		$('loader').style.display="block";
		$('choixImage').fade('hide');
		$('choixImage').innerHTML = xhr_object2.responseText;

   		}
	}  
	xhr_object2.send(null);
}

function UnloadMenu (url)
{
	var xhr_object = null; 
	if(window.XMLHttpRequest) // Firefox 
  		 xhr_object = new XMLHttpRequest(); 
	else if(window.ActiveXObject) // Internet Explorer 
   		xhr_object = new ActiveXObject("Microsoft.XMLHTTP"); 
	else { // XMLHttpRequest non supporté par le navigateur 
  		 alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
  		 return; 
	} 

	var file = url;
	
	xhr_object.open("POST", file, true); 

	xhr_object.onreadystatechange = function() { 
   		if(xhr_object.readyState == 4){
		$('content').style.display="none";
		$('choixImage').fade(1);
		$('encartStage').fade(1);
		closeAll();
		$('content').innerHTML = xhr_object.responseText;
		
		
   		}
	}  
	xhr_object.send(null);
}
