
			var $j = jQuery.noConflict();

			$j(document).ready(function(){
				$j("h1").attr({style: "height:auto;"});
				$j("div.video").each(function(){
					var img = $j(this).find("input.splashImageFile").val();
					var video = $j(this).find("input.videoFile").val();
					$j(this).find(".fleche").attr({style: "background : url(\""+img+"\") no-repeat top;"})
					$j(this).find(".fleche a").attr({name: video})
				});
				$j(".fleche a").click(function(){
					var video =  $j(this).attr("name");
					var video = '<object classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" type="application/x-oleobject" width="400" height="322"  STANDBY="Loading Windows Media Player components..." codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"><param name="url" value="'+video+'"><param name="autostart" value="true"><param name="ShowStatusBar" value="1"><param name="volume" value="100"><PARAM NAME="showControls" VALUE="false"></EMBED></OBJECT><!-- For other browsers * Windows Media Player --><!--[if !IE]> <--><div><embed type="application/x-mplayer2" src="'+video+'" width="320" height="288" autostart="1" showcontrols="1" showtracker ="1" showstatusbar="1"></embed></div><!--> <![endif]--></object>';
					var insert = $j(this).parent("div.fleche");
					var insert2 = insert.parent("div.div_video");
					insert2.html(video);
				});
			});		
			
			document.write('<style type="text/css">.fleche {text-align:center;width:320px;float:left;margin-left:25px;}.div_video {width:320px;float:left;} embed{margin-left:30px;} object{margin-left:30px;}</style>');
