var theImages1 = new Array()
var imagearray = new Array()

//set 1 writing
theImages1[0] = '../images/Index_11.jpg#../images/Index_12.jpg#../images/Index_13.jpg'
theImages1[1] = '../images/Index_11_1.jpg#../images/Index_12_1.jpg#../images/Index_13_1.jpg'
theImages1[2] = '../images/Index_11_3.jpg#../images/Index_12_3.jpg#../images/Index_13_3.jpg'
//theImages1[2] = '../images/Index_11_2.jpg#../images/Index_12_2.jpg#../images/Index_13_2.jpg'
//theImages1[2] = 'images/home_04.gif'
//theImages1[3] = 'images/home_05.gif'
//theImages1[4] = 'images/home_03.gif'

var j = 0
var p = theImages1.length;
var whichImage = Math.round(Math.random()*(p-1));
function showImage(i)
{
	if (i==1)
	{	
		var temp = theImages1[whichImage]
		imagearray = temp.split("#")
		document.write('<img src="'+ imagearray[0] + '" border=0>');
		document.write('<img src="'+ imagearray[1] + '" border=0>');
		document.write('<img src="'+ imagearray[2] + '" border=0>');
	}
}

                                                                                       
                                                                                        