/**
 * @author schinzi
 */
function hideElement(pClass){
	$$(pClass).each(Element.hide);
}

function showElement(pId){
	hideElement('div.hidden');
	$(pId).show();
	return false;
}

function switchElement(pId, lien){
	if($(pId).getStyle('display') == 'block'){
		Effect.SlideUp(pId);
		lien.style.background = "url('images/fleche-programme.png') left 3px no-repeat";
	} else {
		Effect.SlideDown(pId);
		lien.style.background = "url('images/fleche-programme-on.png') left 3px no-repeat";
	}
	return false;
}

function breveActif(id){
	
	tab=document.getElementsByName("breveid");
	for(t=0;t<tab.length;t++){
		document.getElementsByName('breveid')[t].className="none";
	}

	document.getElementById('breveId'+id).className="actif";
}