// JavaScript Documentvar core = 1;var delay = 3000;var undefined;img_list = new Array();img_list.push(Array("images/home/slide1.jpg",null));img_list.push(Array("images/home/slide2.jpg",null));img_list.push(Array("images/home/slide6.jpg",null));img_list.push(Array("images/home/slide3.jpg",null));img_list.push(Array("images/home/slide4.jpg",null));img_list.push(Array("images/home/slide5.jpg",null));function RandomImage(obj, imgObj) {	seed = imgObj.length-1;	core = Math.floor(Math.random() * seed);	document.getElementById(obj).src = imgObj[core][0];	//setTimeout('RandomImage(obj, imgObj)',delay);	}
