// JavaScript Document
function change_menu(id,id_lien){
	document.getElementById(id).style.backgroundImage='url(/img/bt_menu_on.gif)';	
	document.getElementById(id_lien).style.color='#257BCD';
	document.getElementById(id_lien).style.fontWeight='bold';
	//document.getElementById(id).style.lineHeight='31px';
}



function restore_menu(id,id_lien){
	document.getElementById(id).style.backgroundImage='none';	
	document.getElementById(id_lien).style.color='#fff';
	document.getElementById(id_lien).style.fontWeight='normal';	
	//document.getElementById(id).style.lineHeight='28px';
}


