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