var obj = null;

$(document).ready(function()
{
	$("#menu-haut li").hover(function()
	{
		$(this).children("ul:first").fadeIn(500);
	},
	function()
	{
		$(this).children("ul:first").stop(false, true).fadeOut(300);
	});
	
	/*$("object").each(function()
	{
		if ($("param[name=wmode]", $(this)).attr("value") == undefined)
		{
			$(this).prepend('<param name="wmode" value="transparent" />');
		}

		if ($("param[name=movie][value^=http://vimeo.com]", $(this)).attr("value") != undefined)
		{
			$("embed", $(this)).remove();
			//$(this).attr("data", $("param[name=movie]", $(this)).attr("value"));
		}
	});*/
});