window.addEvent('domready', function(){

	// get all h1s on the page, there should only be one of course, but just in case...
	$$('h1').each(function(el){

		// check there is a youtube video id
		if (!el.get('id').match(/youtube-(.*)/)) {
			return false;
		}

		// get the video id
		var videoId = el.get('id').substr(8);

		// add the flash player to the page
		var flashPlayer = new Swiff('http://www.youtube.com/v/' + videoId + '&rel=0&autoplay=1', {
			width: 395,
			height: 333,
			container: $('youtubeVideo')
		});
	});
});
