/*
使用例
setBGIMG('レイヤ?名',image) //レイヤ?の背景画像を指定する
==================================================================*/

// 画像の事前読み込み
var bgimg = new Array()
	bgimg[0] = new Image();bgimg[0].src='./img/list_bg00.jpg'
	bgimg[1] = new Image();bgimg[1].src='./img/list_bg01.jpg'
	bgimg[2] = new Image();bgimg[2].src='./img/list_bg02.jpg'
	bgimg[3] = new Image();bgimg[3].src='./img/list_bg03.jpg'
	bgimg[4] = new Image();bgimg[4].src='./img/list_bg04.jpg'
	bgimg[5] = new Image();bgimg[5].src='./img/list_bg05.jpg'
	bgimg[6] = new Image();bgimg[6].src='./img/list_bg06.jpg'
	bgimg[7] = new Image();bgimg[7].src='./img/list_bg07.jpg'
	bgimg[8] = new Image();bgimg[8].src='./img/list_bg08.jpg'
	bgimg[9] = new Image();bgimg[9].src='./img/list_bg09.jpg'
	bgimg[10] = new Image();bgimg[10].src='./img/list_bg10.jpg'
	bgimg[11] = new Image();bgimg[11].src='./img/list_bg11.jpg'
	bgimg[12] = new Image();bgimg[12].src='./img/list_bg12.jpg'
	bgimg[13] = new Image();bgimg[13].src='./img/list_bg13.jpg'
function setBGIMG(layName,image){  
	if(document.getElementById)
		document.getElementById(layName).style.backgroundImage='url('+image+')'	

	else if(document.all)
		document.all(layName).style.backgroundImage='url('+image+')'

	else if(document.layers)document.layers[layName].background.src=image 
}