// JavaScript Document

my_pix = new Array (
	"images/random/general_info/1.jpg",	
	"images/random/general_info/2.jpg",
	"images/random/general_info/3.jpg",
	"images/random/general_info/4.jpg",
	"images/random/general_info/5.jpg",
	"images/random/general_info/6.jpg",
	"images/random/general_info/7.jpg",
	"images/random/general_info/8.jpg",
	"images/random/general_info/9.jpg",
	"images/random/general_info/10.jpg",
	"images/random/general_info/11.jpg",
	"images/random/general_info/12.jpg",
	"images/random/general_info/13.jpg",
	"images/random/general_info/14.jpg",
	"images/random/general_info/15.jpg",
	"images/random/general_info/16.jpg",
	"images/random/general_info/17.jpg",
	"images/random/general_info/18.jpg",
	"images/random/general_info/19.jpg",
	"images/random/general_info/20.jpg",
	"images/random/general_info/21.jpg",
	"images/random/general_info/22.jpg",
	"images/random/general_info/23.jpg",
	"images/random/general_info/24.jpg",
	"images/random/general_info/25.jpg",
	"images/random/general_info/26.jpg",
	"images/random/general_info/27.jpg",
	"images/random/general_info/28.jpg",	
	"images/random/general_info/29.jpg",
	"images/random/general_info/30.jpg",
	"images/random/general_info/31.jpg",
	"images/random/general_info/32.jpg",
	"images/random/general_info/33.jpg",
	"images/random/general_info/34.jpg",
	"images/random/general_info/35.jpg",
	"images/random/general_info/36.jpg",
	"images/random/general_info/37.jpg",
	"images/random/general_info/38.jpg",
	"images/random/general_info/39.jpg",
	"images/random/general_info/40.jpg",
	"images/random/general_info/41.jpg",
	"images/random/general_info/42.jpg",
	"images/random/general_info/43.jpg",
	"images/random/general_info/44.jpg",
	"images/random/general_info/45.jpg",
	"images/random/general_info/46.jpg",
	"images/random/general_info/47.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;
	}
	
	var img_index = (Math.floor(Math.random() * img_num ))+2;
	var img = my_pix[img_index];
	//alert(img);
	if(document.getElementById)
	{
		document.getElementById('home_pic2').src = img;
	}
	
	var img_index = (Math.floor(Math.random() * img_num ))+3;
	var img = my_pix[img_index];
	//alert(img);
	if(document.getElementById)
	{
		document.getElementById('home_pic3').src = img;
	}
	
	var img_index = (Math.floor(Math.random() * img_num ))+4;
	var img = my_pix[img_index];
	//alert(img);
	if(document.getElementById)
	{
		document.getElementById('home_pic4').src = img;
	}

	
}




function init()
{
	set_image();
	setInterval(set_image, 5000);
}

	
window.onload = init;	

