last=''

	function fctover(elem,id, bull){

		

		elem.style.cursor='pointer'

		if(id=='a5'){

			elem.style.color='#cccccc'

			//document.getElementById(bull).style.color='#cccccc'

			}else{

				elem.style.color='#f49515'

			//document.getElementById(bull).style.color='#f49515'	

				}

		

		if(last!=''){

		document.getElementById(last).style.display='none'

		}
		if(bull=='accueil' || bull=='contact'){
			last='';
		}else{
			document.getElementById(id).style.display='block';
			last=id;
		}
		

	}

	function fctout(elem, id , bull){

		if(id=='a5'){

			elem.style.color='#f49515'

			document.getElementById(bull).style.color='#f49515'

			}else{

				elem.style.color='white'

			document.getElementById(bull).style.color='white'	

				}

		elem.style.cursor='arrow'

	}

function navOver(elem){

		elem.style.color='#db8c15'

		elem.style.cursor='hand'

		elem.style.borderBottomColor='#db8c15'		

	}

function navOut(elem){

		elem.style.color='#FFFFFF'

		elem.style.cursor='auto'

		elem.style.borderBottomColor='#FFFFFF'		

	}