// JavaScript Document


function selectRub(idrub){

document.getElementById("text_"+idrub).style.backgroundColor = '#42403A';
document.getElementById("titre_"+idrub).style.color = '#DFCB8F';
document.getElementById("titre_"+idrub).style.paddingLeft = '10px';
}

function unselectRub(idrub){

document.getElementById("text_"+idrub).style.backgroundColor = '';
document.getElementById("titre_"+idrub).style.color = '';
document.getElementById("titre_"+idrub).style.paddingLeft = '0px';
}


function selectSousRub(idrub){
document.getElementById("sousmenu_"+idrub).style.backgroundColor = '#31302B';
}
function unselectSousRub(idrub){
document.getElementById("sousmenu_"+idrub).style.backgroundColor = '';
}

function showHide(idrub){



	if(document.getElementById("survol_"+idrub).style.visibility == 'hidden'){
	
	<BOUCLErub(RUBRIQUES){tout}{id_parent=1}{par titre}>
	document.getElementById("survol_#ID_RUBRIQUE").style.visibility = 'hidden';
document.getElementById("menu_#ID_RUBRIQUE").style.display = 'none';

	</BOUCLErub>
	
document.getElementById("survol_"+idrub).style.visibility = 'visible';
document.getElementById("menu_"+idrub).style.display = 'block';

} else {

document.getElementById("survol_"+idrub).style.visibility = 'hidden';
document.getElementById("menu_"+idrub).style.display = 'none';
}

}

document.write('');
