var lastDiv="";
var lastDivId="";

function ouvrefermeDiv(id){	
	quelDiv=document.getElementById('faq'+id).style;
if (lastDiv==quelDiv){
		if (lastDiv.display=='block'){
				lastDiv.display='none';
				document.images['bt'+id].src="../images/faq_garrow-right.gif";
				document.getElementById('tr'+id).style.backgroundColor='#CFDEE4';
			//	document.getElementById('td'+id).style.backgroundColor='#E4E5C8';
				document.getElementById('t'+id).className='blackNormal';
		}
	}
if (lastDiv!=quelDiv){
	
	if (quelDiv.display=='none'){
			
			if (lastDivId!=""){
					
					document.images['bt'+lastDivId].src="../images/faq_garrow-right.gif";
					document.getElementById('tr'+lastDivId).style.backgroundColor='#CFDEE4';
				//	document.getElementById('td'+lastDivId).style.backgroundColor='#E4E5C8';
					document.getElementById('t'+lastDivId).className='blackNormal';
					
			}
			lastDiv.display='none';
			quelDiv.display='block';
			document.images['bt'+id].src="../images/faq_garrow-down-orange.gif";
			document.getElementById('tr'+id).style.backgroundColor='#ffffff';
		//	document.getElementById('td'+id).style.backgroundColor='#F2F2E4';
			document.getElementById('t'+id).className='faqopen';
	}else{
			
			quelDiv.display='none';
			document.images['bt'+id].src="../images/faq_garrow-right.gif";
			document.getElementById('tr'+id).style.backgroundColor='#CFDEE4';
			
		  }
	}
	if (lastDiv!=quelDiv){
			lastDiv=quelDiv;
			lastDivId=id;
	}else{
		lastDiv="";
		lastDivId="";
	}
}

