function onYouTubePlayerReady(playerId) {
	player = document.getElementById("myytplayer");
}

// run when dom is available
$(document).ready(function(){
	setup_video_list();
});

function setup_video_list(){
	$('.aside .callout .video a').click(function(){
		// get requested id
		ytid = $(this).attr('href').replace('http://www.youtube.com/watch?v=','');
		// play requested video
		player.loadVideoById(ytid, 0, 'default');
		// update quote
		$('.article .quote').html($(this).find('span').html());
		// cancel link
		return(false);
	});
}