// JavaScript Document
var bannerArray = new Array(14);
		var currentImage = 0;
		bannerArray = ['images/home/01.jpg','images/home/02.jpg','images/home/03.jpg','images/home/04.jpg','images/home/05.jpg','images/home/06.jpg','images/home/07.jpg','images/home/08.jpg','images/home/09.jpg','images/home/10.jpg','images/home/11.jpg','images/home/12.jpg','images/home/13.jpg','images/home/14.jpg'];
	function getRandomNum(){
	var mainpicture = document.getElementById('mainpicture');
	mainpicture.innerHTML = "<img src="+bannerArray[currentImage]+" border='0' width=960 height=385>";
	if(currentImage < bannerArray.length-1){
		currentImage += 1;
	}else{
		currentImage = 0;
	}
}
getRandomNum();
var bannerInterval = setInterval("getRandomNum()", 4500);