function deroulantPourIE6()
{
	if(document.getElementById('menu_deroulant_annonces') == null)
	{
		return;
	}
	var menu_deroulant_annonces = document.getElementById('menu_deroulant_annonces').getElementsByTagName('ul')[0];
	var lien_menu_deroulant_annonces = document.getElementById('menu_deroulant_annonces').getElementsByTagName('a')[0];
	var classe_annonce = new Array();
	var lien_annonce = new Array();
	var nom_annonce = new Array();
	for(var i = 0; i < menu_deroulant_annonces.getElementsByTagName('li').length; i++)
	{
		var annonce = menu_deroulant_annonces.getElementsByTagName('li')[i];
		var tmp = annonce.getAttribute('name');
		tmp = annonce.getAttribute('className');
		classe_annonce.push(tmp);
		lien_annonce.push(annonce.getElementsByTagName('a')[0].getAttribute('href'));
		nom_annonce.push(annonce.firstChild.firstChild.nodeValue);
	}
	if(lien_annonce.length > 0)
	{
		var noeud_ul = document.createElement('ul');
		noeud_ul.className = "liste_annonces";
		noeud_ul.id = "menu_deroulant_annonces_ie";
		for(i = 0; i < lien_annonce.length; i++)
		{
			var texte = document.createTextNode(nom_annonce[i]);
			var noeud_a = document.createElement('a');
			noeud_a.setAttribute('href',lien_annonce[i])
			noeud_a.appendChild(texte);
			var noeud_li = document.createElement('li');
			noeud_li.className = classe_annonce[i];
			noeud_li.appendChild(noeud_a);
			noeud_ul.appendChild(noeud_li);
		}
		document.getElementsByTagName('body')[0].appendChild(noeud_ul);
		placerMenuAnnoncesIE6();
		window.onresize = placerMenuAnnoncesIE6;
	}
}
function placerMenuAnnoncesIE6()
{
	var right_menu = (document.getElementsByTagName('body')[0].offsetWidth - document.getElementById('conteneur_head3').offsetWidth) / 2 + 20;
	var top_menu = document.getElementById('conteneur_head3').offsetHeight + document.getElementById('lien_menu_annonces').offsetHeight;
	document.getElementById('menu_deroulant_annonces_ie').style.top = top_menu;
	document.getElementById('menu_deroulant_annonces_ie').style.right = right_menu;
	document.getElementById('menu_deroulant_annonces').onmouseover = function(){document.getElementById('menu_deroulant_annonces_ie').setAttribute('class','hover');document.getElementById('menu_deroulant_annonces_ie').setAttribute('className','hover');};
	document.getElementById('menu_deroulant_annonces_ie').onmouseover = function(){
		document.getElementById('menu_deroulant_annonces_ie').className = "hover";
		document.getElementById("lien_espace_membre").style.visibility = "hidden";
	};
	//document.getElementById('bloc_membre').onmouseout = function(){document.getElementById('menu_deroulant_annonces_ie').className = '';};
	document.getElementById('menu_deroulant_annonces_ie').onmouseout = function(){
		document.getElementById("menu_deroulant_annonces_ie").className = '';
		document.getElementById("lien_espace_membre").style.visibility = "visible";
	};
}
/* Compilation conditionnelle d'IE */
/*@cc_on
addToStart(deroulantPourIE6);
@*/