//**************************************
//　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"];
skin[5]=["/Customer/Member/Images/ti_top_newyear.gif","bg5"];//新年用
skin[6]=["/Customer/Member/Images/ti_top_10thanniversary.gif","bg6"];
skin[7]=["/Customer/Member/Images/ti_top_lightgreen.gif","bg7"];
skin[8]=["/Customer/Member/Images/ti_top_gold.gif","bg8"];
skin[9]=["/Customer/Member/Images/0128_h1_10thCoupon.gif","bg9"];
skin[10]=["/Customer/Member/Images/0128_h1_10th.gif","bg10"];
skin[11]=["/Customer/Member/Images/0128_h1_10thChronicle.gif","bg11"];

//動作
function changeSkin(num) {
	document.getElementById("SIGNBOARD-TITLE").src = skin[num][0];
	document.getElementById("CONTENTS-CONTAINER").className = skin[num][1];
}
