		var slideShowSpeed = 7000;
		var crossFadeDuration = 5;
		var arrPic = new Array('../../gifs/europe5.jpg','../../gifs/europe2.jpg','../../gifs/europe3.jpg','../../gifs/europe4.jpg','../../gifs/europe1.jpg','../../gifs/europe6.jpg','../../gifs/europe7.jpg');
		var intPicArrLength = arrPic.length;
		var j = 0;
		var arrPreLoad = new Array();
		
		for(i=0; i < intPicArrLength; i++) {
		   arrPreLoad[i] = new Image();
		   arrPreLoad[i].src = arrPic[i];
		}
		
		function runSlideShow() {
			if (document.all) {
				document.images.SlideShow.style.filter = "blendTrans(duration = crossFadeDuration)";
				document.images.SlideShow.filters.blendTrans.Apply();      
			}
			
			document.images.SlideShow.src = arrPreLoad[j].src;
			
			if(document.all)
				document.images.SlideShow.filters.blendTrans.Play(crossFadeDuration);
			
			j = j + 1;
			
			if(j >= intPicArrLength)
				j=0
			
			t = setTimeout('runSlideShow()', slideShowSpeed)
		}
		
		function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);