// JavaScript Document

function init(){
	
	// リンクを叩いたらフルスクリーン表示
	var entrance = document.getElementById("entrance");
	entrance.onclick = function(){
		window.open("contents.html", "contents", "fullscreen=yes, scrollbars=no");
		return false;
	}
	
	// ロールオーバー表現
	var linkImg = entrance.getElementsByTagName("img").item(0);
	linkImg.onmouseover = function(){this.src = this.src.replace(".png", "-on.png");}
	linkImg.onmouseout = function(){this.src = this.src.replace("-on.png", ".png");}	
}

window.onload = init;
