$(function(){
	//modif des flashs.
	$("embed").attr("wmode","transparent");
	$("#edito object[type=application/x-shockwave-flash]").each(function(i){
							//var fs = $(this).find('param[name=allowFullScreen]');
							var wm = $(this).children('param[name=wmode]');
							//if (fs)
								//fs.remove();
							if (wm)
								wm.val("transparent");
							else
								$(this).append('<param name="wmode" value="transparent">');
							});
	
//	if ($("#edito").html())
//		$("#edito").html($("#edito").html().replace(/param[ ]*name[ ]*=[ ]*\"allowfullscreen\"[ ]*value[ ]*=[ ]*\"true\"/i,'param name="wmode" value="transparent"'));

	//$("div").hover(function(){$(this).css("border", "1px solid orange");$("#test").text($(this).attr("id"));},function(){$(this).css("border", "0");});
	});