/*///////////////////////////////////////////////////////////////////////////////////
// SCRIPT : fonctionnalités de base du site
// ...
/////////////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////////////////////////////
// SOMMAIRE :
// Menu gauche
// Popup image
// Protection mailto
// Afficher texte
///////////////////////////////////////////////////////////////////////////////////*/

/////////////////////////////////////////////////////////////////////////////////////
// Menu gauche
/////////////////////////////////////////////////////////////////////////////////////
window.addEvent('domready', function() {
	if($('divMenuGauche')){
		var accordion = new Accordion($$('div.toggler'), $$('div.content'), {
			//display: ouverturesousmenugauche,
			opacity: false,
			duration: 400,
			onActive: function(togglers, stretchers){
				//togglers.set('class', 'niveau1VertActif');
			},
			onBackground: function(togglers, stretchers){
				//togglers.set('class', 'niveau1Vert');
			}
		});
	}
	/**********************/
	/* Tooltips classique */
	/**********************/
	if($('divCarte')){
		var SimpleTip = new Tips('.infoBulle', {
			className : "tooltip",
			showDelay: 50,
			hideDelay: 10,
			offsets: {x: -150, y: 22},
			fixed: false
		});
	}
});

/////////////////////////////////////////////////////////////////////////////////////
// Popup image
/////////////////////////////////////////////////////////////////////////////////////
window.addEvent('domready', function() {
 	SqueezeBox.assign($$('a[rel=boxed]'));
});

/*///////////////////////////////////////////////////////////////////////////////////
// Protection mailto
///////////////////////////////////////////////////////////////////////////////////*/
function encodeMailto(leNom, leDomaine, laClasse, laPhrase){
	var tg = "<";
	var name = leNom;
	var at = "@";
	var host = leDomaine;
	var text = laPhrase;
	document.write(tg+"a hr"+"ef=mai"+"lto:"+name);
	document.write(at+host+" class='"+laClasse+"'>"+text+tg+"/a>");
}
/*///////////////////////////////////////////////////////////////////////////////////
// Afficher texte
///////////////////////////////////////////////////////////////////////////////////*/
function affichTexte(id){
	if($('divTexte'+id).style.display=="none"){
		$('divTexte'+id).style.display="block";
	}else{
		$('divTexte'+id).style.display="none";
	}
}
