function fMenu() {
	new mooMenu($('menubas'));
}

function init(){
	fMenu();
}
window.addEvent('load', init);

function displayFlash(swf, largeur, hauteur, alternatif, alternatif_a, alternatif_b, keywords)
{
	document.write('<object type="application/x-shockwave-flash" data="'+swf+'" width="'+largeur+'" height="'+hauteur+'">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+swf+'" />');
	document.write(alternatif);
	document.write(alternatif_a);
	document.write(alternatif_b);
	if(keywords)
	{
		document.write(keywords);
	}
	document.write('</object>');
}