// sympozium.fr

function toggleid(id,state) {
	var elt=document.getElementById(id).style;
	elt.display=state;
}

function ajnimeShow(id) {
	toggleid('tip','none');
	toggleid('cha','none');
	toggleid('mur','none');
	toggleid('men','none');
	toggleid('san','none');
	toggleid(id,'block');
}

function murtoggle(id) {
	toggleid('mur1','none');
	toggleid('mur2','none');
	toggleid(id,'block');
}

