Shadowbox.init({
    // let's skip the automatic setup because we don't have any
    // properly configured link elements on the page
    skipSetup: true
});

function openShadowbox (youtubeID) {
	
	var url = "http://www.youtube.com/v/" + youtubeID + "&hl=ja-JP&fs=1&autoplay=1";
	
	Shadowbox.open ({
		content: url,
		width: 480,
		height: 390,
		player: "swf",
		counterType:"skip"
	});
}
