//**************************************
//　Flashからの背景操作
//**************************************

//定義
var skin = new Array();
skin[0]=["/Customer/Member/Images/ti_top.gif","bg0"];
skin[1]=["/Customer/Member/Images/ti_top.gif","bg1"];
skin[2]=["/Customer/Member/Images/ti_top_nyukai.gif","bg2"];
skin[3]=["/Customer/Member/Images/ti_top.gif","bg3"];
skin[4]=["/Customer/Member/Images/ti_top_moniter.gif","bg4"];

//動作
function changeSkin(num) {
	document.getElementById("SIGNBOARD-TITLE").src = skin[num][0];
	document.getElementById("CONTENTS-CONTAINER").className = skin[num][1];
}
