var arImgShop = new Array(4);
arImgShop[0] = new Image(411, 311); arImgShop[0].src = "image/shop/open-air/01.jpg"; arImgShop[0].alt = "正面から";
arImgShop[1] = new Image(411, 311); arImgShop[1].src = "image/shop/open-air/02.jpg"; arImgShop[1].alt = "５号線側から";
arImgShop[2] = new Image(411, 311); arImgShop[2].src = "image/shop/open-air/03.jpg"; arImgShop[2].alt = "玄関です";
arImgShop[3] = new Image(261, 311); arImgShop[3].src = "image/shop/open-air/04.jpg"; arImgShop[3].alt = "白樺人形がお出迎え";

var arImgInShop = new Array(3);
arImgInShop[0] = new Image(411, 311); arImgInShop[0].src = "image/shop/in/01.jpg"; arImgInShop[0].alt = "２階の食事スペースです";
arImgInShop[1] = new Image(411, 311); arImgInShop[1].src = "image/shop/in/02.jpg"; arImgInShop[1].alt = "明け方の２階の様子";
arImgInShop[2] = new Image(411, 311); arImgInShop[2].src = "image/shop/in/03.jpg"; arImgInShop[2].alt = "１階の食事スペースです";
arImgInShop[3] = new Image(411, 311); arImgInShop[3].src = "image/shop/in/04.jpg"; arImgInShop[3].alt = "売り場 対面形式です";


function SetAirImage(idx, tgt)
{
	tgt.src = arImgShop[idx].src;
	tgt.alt = arImgShop[idx].alt;
	tgt.title = arImgShop[idx].alt;
	tgt.width = arImgShop[idx].width;
	tgt.height = arImgShop[idx].height;
}

function SetInImage(idx, tgt)
{
	tgt.src = arImgInShop[idx].src;
	tgt.alt = arImgInShop[idx].alt;
	tgt.title = arImgInShop[idx].alt;
	tgt.width = arImgInShop[idx].width;
	tgt.height = arImgInShop[idx].height;
}

