document.observe('dom:loaded', function() {
	
	// Observe clicks on the place holder image
	$('ysPlaceHolder').observe('click', function() {
		
		// Fade out the place holder
		new Effect.Fade(this);
		
		// Set the variables and parameters for the SWF movie
		var vars = { autoplay: 'yes', javascriptid: 'video-1', width: '640', height: '360', locksize: 'no' };
		var params = { allowfullscreen: 'true', allowscriptaccess: 'always', seamlesstabbing: 'true', overstretch: 'true' };
		
		// Embed the SWF onto the page
		swfobject.embedSWF(
			'http://video.yogasynergy.com/RO9LMi8A',
			'ysMovieHolder', '640', '360', '9.0.115',
			'http://video.yogasynergy.com/wordpress-content/plugins/video/expressInstall2.swf',
			vars, params
		);
		
	});
	
});