// SE20110329 : Ajout Video sur le même principe que Red Carpet (cf: redcarpets.js)$(document).ready
(
	function()
	{
		// lorsqu'on charge la page, on affiche la premiere actualite
		var id = $(".actu_titre:first").attr("actu_id");
		var titre = $("#titre_"+id).html();
		var texte = $("#texte_"+id).html();
		var image = $("#image_"+id).html();
		// SE20110329 - Début		var video = $(".hidden_image:first").attr("d_video");		// SE20110329 - Fin
		// SE20110329 - Début		//$("#zone_image").html('<img src="'+image+'" />');		if (video == "1")		{			$("#zone_image").html(AC_FL_RunContent2(				'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',				'width', '300',				'height', '225',				'src', 'vplayeras2',				'quality', 'high',				'pluginspage', 'http://www.macromedia.com/go/getflashplayer',				'align', 'middle',				'play', 'true',				'loop', 'true',				'scale', 'showall',				'wmode', 'transparent',				'devicefont', 'false',				'id', 'vplayeras2',				'bgcolor', '#ffffff',				'name', 'vplayeras2',				'menu', 'true',				'flashVars', 'myParam='+image,				'allowFullScreen', 'false',				'allowScriptAccess','sameDomain',				'movie', '../swfs/vplayeras2',				'salign', ''				));		}		else		{			$("#zone_image").html('<img src="'+image+'" />');		}		// SE20110329 - Fin
		$("#zone_texte > #current_titre").html(titre);
		$("#zone_texte > #current_texte").html(texte);

		$(".actu_titre").hover
		(
			function ()
			{
				id = $(this).attr("actu_id");
				titre = $("#titre_"+id).html();
				texte = $("#texte_"+id).html();
				image = $("#image_"+id).html();
				// SE20110329 - Début				video = $(this).attr("d_video");				// SE20110329 - Fin
				// SE20110329 - Début				//$("#zone_image").html('<img src="'+image+'" />');				if (video == "1")				{					$("#zone_image").html(AC_FL_RunContent2(						'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',						'width', '300',						'height', '225',						'src', 'vplayeras2',						'quality', 'high',						'pluginspage', 'http://www.macromedia.com/go/getflashplayer',						'align', 'middle',						'play', 'true',						'loop', 'true',						'scale', 'showall',						'wmode', 'transparent',						'devicefont', 'false',						'id', 'vplayeras2',						'bgcolor', '#ffffff',						'name', 'vplayeras2',						'menu', 'true',						'flashVars', 'myParam='+image,						'allowFullScreen', 'false',						'allowScriptAccess','sameDomain',						'movie', '../swfs/vplayeras2',						'salign', ''						));				}				else				{					$("#zone_image").html('<img src="'+image+'" />');				}								// SE20110329 - Fin
				$("#zone_texte > #current_titre").html(titre);
				$("#zone_texte > #current_texte").html(texte);
			}
			,
			function ()
			{
			}
		);
	}
);

