function launchVideos() {

	// For each video on the page set up as <a class="inlinevideo" id="VIDEO_ID" href="VIDEO_LOCATION"><optional image /></a>

		// Sets the proper language controls
		var lang = ($("#wrapper").size() > 0) ? $("#wrapper").attr("class") : $("body").attr("class");
		var playConf = (lang=="en") ? conf.play.en : conf.play.fr;
		var controlsConf = (lang=="en") ? conf.controls.en : conf.controls.fr;

		// Compile the control variables
		var playerControls = {
			key: getKey(window.location.href),
			clip: conf.defaults,
			play: playConf,
			plugins: {
				controls: controlsConf
			}

		}

		// Launch the video
		$f("a.inlinevideo", {src: conf.player, wmode: 'opaque'},  playerControls); 
}
