
/*________________________________________________________

	Random Image JavaScpipt
	written by Toyohiro Sugita
	SUPER EDITION, INC.
	sugitoyo@super-edition.com
	Last updated on 2003.04.11
________________________________________________________*/

var RandomImg;
var imgMax = 3;
var rndSeed = Math.round((Math.random() * 1) * (imgMax - 1));
function randImg() {
	RandomImg = '<img src="http://www.maruto-shibayama.com/shared/image/head_image/' + rndSeed + '.jpg" width="760" height="140" alt="きもの しばやま" border="0">';
	document.write(RandomImg);
}