$(function(){
				
	// Show Website
	$('.nyroModalS1Tsuruya').click(function(e) {
		e.preventDefault();
		$.nyroModalManual({
			url: 'http://paravie.jp/case/tsuruya/index.htm',
			width: 680,
			height: 690,
		});
		return false;
	});
	
	// Show YouTube
	$.nyroModalSettings({
		processHandler: function(settings) {
			var url = settings.url;
			if (url && url.indexOf('youtube.com/watch?v=') != -1) {
				$.nyroModalSettings({
					type: 'swf',
					height: 355,
					width: 425,
					url: url.replace(new RegExp("watch\\?v=", "i"), 'v/')
				});
			}
		}
	});

});
