// JavaScript Document

//ポップアップ
function openwin(theURL,winName,features) {
	window.open(theURL,winName,features);
}

	var img = new Array();
	img[110] = new Image(); img[110].src = "../common/img/btn_schedule2.jpg";
	img[120] = new Image(); img[120].src = "../common/img/btn_profile2.jpg";
	img[130] = new Image(); img[130].src = "../common/img/btn_theater-intro2.jpg";
	img[140] = new Image(); img[140].src = "../common/img/btn_summary2.jpg";
	img[150] = new Image(); img[150].src = "../common/img/btn_show2.jpg";
	img[160] = new Image(); img[160].src = "../common/img/btn_beginner2.jpg";
	img[170] = new Image(); img[170].src = "../common/img/btn_topics2.jpg";
	img[180] = new Image(); img[180].src = "../common/img/btn_goods2.jpg";
	
	img[310] = new Image(); img[310].src = "../common/img/btn_fontsize_up2.gif";
	img[320] = new Image(); img[320].src = "../common/img/btn_fontsize_normal2.gif";
	
	img[500] = new Image(); img[500].src = "../common/img/btn_home.gif";
	img[510] = new Image(); img[510].src = "../common/img/btn_inquiry.gif";
	img[520] = new Image(); img[520].src = "../common/img/btn_qa.gif";
	img[530] = new Image(); img[530].src = "../common/img/btn_mail.gif";
	
	
	
	img[111] = new Image(); img[111].src = "../common/img/btn_schedule2_on.jpg";
	img[121] = new Image(); img[121].src = "../common/img/btn_profile2_on.jpg";
	img[131] = new Image(); img[131].src = "../common/img/btn_theater-intro2_on.jpg";
	img[141] = new Image(); img[141].src = "../common/img/btn_summary2_on.jpg";
	img[151] = new Image(); img[151].src = "../common/img/btn_show2_on.jpg";
	img[161] = new Image(); img[161].src = "../common/img/btn_beginner2_on.jpg";
	img[171] = new Image(); img[171].src = "../common/img/btn_topics2_on.jpg";
	img[181] = new Image(); img[181].src = "../common/img/btn_goods2_on.jpg";
	
	img[311] = new Image(); img[311].src = "../common/img/btn_fontsize_up2_on.gif";
	img[321] = new Image(); img[321].src = "../common/img/btn_fontsize_normal2_on.gif";
		
	img[501] = new Image(); img[501].src = "../common/img/btn_home_on.gif";
	img[511] = new Image(); img[511].src = "../common/img/btn_inquiry_on.gif";
	img[521] = new Image(); img[521].src = "../common/img/btn_qa_on.gif";
	img[531] = new Image(); img[531].src = "../common/img/btn_mail_on.gif";
	
	
	
//ロールオーバー
	function _in(nam,num){
		document.images[nam].src = img[num].src;
	}

//ロールアウト
	function _out(nam,num){
		document.images[nam].src = img[num].src;
	}
	
	
