var Speed = 3000;
						var Pic = new Array();Pic[0] = '../image/p1.jpg';Pic[1] = '../image/p2.jpg';Pic[2] = '../image/p3.jpg';Pic[3] = '../image/p4.jpg';Pic[4] = '../image/vm1.jpg';Pic[5] = '../image/vm2.jpg';Pic[6] = '../image/vm3.jpg';Pic[7] = '../image/vm4.jpg';Pic[8] = '../image/vm5.jpg';Pic[9] = '../image/vm6.jpg';							   									   
						
						var a = Pic.length;
						var preLoad = new Array();
						
						for (num = 0; num < a; num++)
						{
							preLoad[num] = new Image();
							preLoad[num].src = Pic[num];
						}
						
						run = 0;
						kind = 1;
						
						function show() 
						{
						
							if (document.all) 
							{
								document.images.pic.style.filter='revealTrans(duration=0)';
								document.images.pic.style.filter='revealTrans(transition = kind)';
								document.images.pic.filters.revealTrans.apply();
							}
						
							document.images.pic.src = preLoad[run].src;
						
							if (document.all) 
							{
								document.images.pic.filters.revealTrans.Play();
							}
						
							run++;
							if (run > (a - 1)) 
								run = 0;
						
							kind++;
							if (kind > 22 ) 
								kind = 0;
							
							setTimeout('show()', Speed);
						}