function initStyle(){
	if(typeof(doLoaded) != "undefined"){doLoaded();}
	chgIMG();
}


function chgIMG(){
bcimg = new Array(3);

bcimg[0] = 'url("http://template.cocolog-nifty.com/000423/three_column/component/banner00.jpg")';
bcimg[1] = 'url("http://template.cocolog-nifty.com/000423/three_column/component/banner01.jpg")';
bcimg[2] = 'url("http://template.cocolog-nifty.com/000423/three_column/component/banner02.jpg")';

rnd = Math.floor(Math.random() * bcimg.length);

document.getElementById("banner").style.backgroundImage = bcimg[rnd];

}