// JavaScript Document
var block_affiche = '';
$(function() {
	
	//on cache tous les blocks
	$('.contenu_interne').hide();
	
	
	//on récupere l'ancre de l'url (si renseignée)
	var div_defaut = 'contenu_exp';
	anchor = window.location.hash;
	anchor = anchor.substring(1,anchor.length); // enleve le #
	if (anchor != ''){
		div_defaut = anchor;
	}
	$('#'+div_defaut).show();
	block_affiche = div_defaut;
	
});

function show_contenu(nom_contenu){
	$('#'+block_affiche).hide();
	$('#'+nom_contenu).show();
	block_affiche = nom_contenu;
}
