/*
function initPlugin()
{
	if(window.navigator.userAgent.toLowerCase().search(/msie 7\.\d/) != -1)
	{
		var objColl = document.getElementsByTagName('object');
		var embColl = document.getElementsByTagName('embed');
		
		copyPluginNode(objColl);
		copyPluginNode(embColl);
	}
}

function copyPluginNode(coll)
{
	for(var i=0; i<coll.length; i++)
	{
		if(coll.item(i).parentNode.tagName.toLowerCase() != 'object')
		{
			var pObj = getParentElement(coll.item(i))
			
			if(isInitialized(pObj))
			{	
				var cpObj = coll.item(i).cloneNode(true);
				
				pObj.replaceChild(coll.item(i),cpObj);
			}
		}
	}
}*/

function initPlugin()
{
	var fM = document.getElementById('bandeau-flash');
	
	if(isInitialized(fM))
	{
		var hM = new FlashObject();
		hM.setUrl('/swf/menu.swf');
		hM.insertFlashCode(fM);
	}
}

if(window.addOnloadFunction)
{
	//addOnloadFunction(initPlugin);
}