//カーテン、ボタン
	var INTERVAL = 10;
	var x = -200;
	var animating = false;
	var timer;
	function move()
	{
	aSlide = document.getElementById("curtain");
	x = x + 5;
	aSlide.style.left = x + "px";
	if (x > 675)
		{
		x = 675;
		}
		timer = setTimeout("move()", INTERVAL);
		var visible = true;
			{
			var button = document.getElementById("button");
			if (visible)
				{
				button.style.visibility = "hidden";
				}
			}
	}
//カーテン、ボタンここまで



//superbox
	$(function(){
		$.superbox.settings = {
			closeTxt: "close",
			loadTxt: "loading...",
			nextTxt: "next",
			prevTxt: "previous"
		};
		$.superbox();
		});
		//superboxここまで

