var start = new Date();
   		function Array() { return this; }
   		
   		var img = new Array();
   		var txt = new Array();
   		
   		img[0] = "picture1.jpg";
   		txt[0] = "caption1.gif";
   		img[1] = "picture2.jpg";
   		txt[1] = "caption2.gif";
   		img[2] = "picture3.jpg";
   		txt[2] = "caption3.gif";
   		img[3] = "picture4.jpg";
   		txt[3] = "caption4.gif";
        img[4] = "picture5.jpg";
   		txt[4] = "caption5.gif";
		img[5] = "picture6.jpg";
   		txt[5] = "caption6.gif";
		img[6] = "picture7.jpg";
   		txt[6] = "caption7.gif";
		img[7] = "picture8.jpg";
   		txt[7] = "caption8.gif";
   		img[8] = "picture9.jpg";
   		txt[8] = "caption9.gif";
   		img[9] = "picture10.jpg";
   		txt[9] = "caption10.gif";
   		img[10] = "picture11.jpg";
   		txt[10] = "caption11.gif";
   		img[11] = "picture12.jpg";
   		txt[11] = "caption12.gif";
   		img[12] = "picture13.jpg";
   		txt[12] = "caption13.gif";
   		img[13] = "picture14.jpg";
   		txt[13] = "caption14.gif";
   		img[14] = "picture15.jpg";
   		txt[14] = "caption15.gif";

   		
   		var num_img = 15;
   		
   		function pix()
   		{
   			var now = new Date;
   			var x = now.getSeconds() % num_img;
   			
   			document.write("<IMG SRC='slides/" + img[x] + "' BORDER=0><BR>");
   			document.write("<IMG SRC='slides/" + txt[x] + "' BORDER=0>");
   		}	