// JavaScript Document

var img = new Array;
img[0] = "http://www.imhome-style.com/common/img/pic01.jpg";
img[1] = "http://www.imhome-style.com/common/img/pic02.jpg";
img[2] = "http://www.imhome-style.com/common/img/pic03.jpg";
function rnd_img(){
var i = myrandom(img.length) - 1;
document.write("<img src=\""+img[i]+"\"alt=\"I'm home\">");
}
function myrandom(max){
var v = max * Math.random();
if(v == 0.0){v = 1;}else{v = Math.ceil(v);}
return v;
}