// JavaScript Document

my_pix = new Array (
	"images/random/prep/1.jpg",	
	"images/random/prep/2.jpg",
	"images/random/prep/3.jpg",
	"images/random/prep/4.jpg",
	"images/random/prep/5.jpg",
	"images/random/prep/6.jpg",
	"images/random/prep/7.jpg",
	"images/random/prep/8.jpg",
	"images/random/prep/9.jpg",
	"images/random/prep/10.jpg",
	"images/random/prep/11.jpg",
	"images/random/prep/12.jpg",
	"images/random/prep/13.jpg",
	"images/random/prep/14.jpg",
	"images/random/prep/15.jpg",
	"images/random/prep/16.jpg",
	"images/random/prep/17.jpg",
	"images/random/prep/18.jpg",
	"images/random/prep/19.jpg",
	"images/random/prep/20.jpg",
	"images/random/prep/21.jpg",
	"images/random/prep/22.jpg",
	"images/random/prep/23.jpg",
	"images/random/prep/24.jpg",
	"images/random/prep/25.jpg",
	"images/random/prep/26.jpg",
	"images/random/prep/27.jpg",
	"images/random/prep/28.jpg",	
	"images/random/prep/29.jpg",
	"images/random/prep/30.jpg",
	"images/random/prep/31.jpg"
);
// random image chooser
img_num = my_pix.length

function set_image()
{
	var img_index = (Math.floor(Math.random() * img_num ));
	var img = my_pix[img_index];
	//alert(img);
	if(document.getElementById)
	{
		document.getElementById('home_pic').src = img;
	}
	
	var img_index = (Math.floor(Math.random() * img_num ))+1;
	var img = my_pix[img_index];
	//alert(img);
	if(document.getElementById)
	{
		document.getElementById('home_pic1').src = img;
	}
}

function init()
{
	set_image();
	setInterval(set_image, 5000);
}
	
window.onload = init;	
