/*==========================*/
/* roolover 4 welcome page  */
/*==========================*/
pix = new Array("image/Urad200.jpg","image/Urad900.jpg");
/* Image Preloading */
a = new Image(); a.src = "image/Urad200.jpg";
//end image preloading
	var i = 0;
	function slideshow(){
	setInterval("change()", 3000);
	}
	function change(){
	document.images.pic.src = pix[i];
	i = i + 1;
	if (i > (pix.length - 1)) {i = 0}
	}
	