<!-- Begin
var theImages1 = new Array()

//set 1 writing
theImages1[0] = 'home_img/home_01.jpg'
theImages1[1] = 'home_img/home_02.jpg'

theImages1[2] = 'home_img/home_04.jpg'
theImages1[3] = 'home_img/home_05.jpg'

var j = 0
var p = theImages1.length;
var whichImage = Math.round(Math.random()*(p-1));
function showImage(i){
if (i==1)
document.write('<img src="'+theImages1[whichImage]+'" border=0>');

}

//  End -->
