jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox();
})


function playVideo() {
	document.getElementById('yt1').playVideo();
}

$(document).bind('reveal.facebox', function() { 
	
	// ...stuff to do after the facebox and contents are revealed... 
	playVideo();
	
});


function onYouTubePlayerReady(playerId) {
	//alert('xxx');
	
	document.getElementById('yt2').playVideo();
	document.getElementById('yt1').playVideo();
}
