		if(Pic != null){
		var t
		var j = 0
		var p = Pic.length	
		
		
		var preLoad = new Array()
		for (i = 0; i < p; i++){
		preLoad[i] = new Image()
		preLoad[i].src = Pic[i]
							  
		}
		
		
		
		function runSlideShow(Pic){
		   if (document.all){
		   	//top
		      document.images.SlideShow.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
		      document.images.SlideShow.filters.blendTrans.Apply() 
			 	//bottom
		      document.images.SlideShow2.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)"
		      document.images.SlideShow2.filters.blendTrans.Apply()        
		   }
		  	//top
		   document.images.SlideShow.src = preLoad[j].src
		   document.getElementById("url").href = Pic_URL[j] // ur pulled from inc_javascript
		   document.images.SlideShow.alt = Pic_ALT[j]// = ur[j] 
		//bottom
		  document.images.SlideShow2.src = preLoad[j].src
		   document.getElementById("url2").href = Pic_URL[j] // ur pulled from inc_javascript
		   document.images.SlideShow2.alt = Pic_ALT[j]// = ur[j] 
		
		
			
		   if (document.all){
		      //top
			  document.images.SlideShow.filters.blendTrans.Play()
			  //bottom
			 document.images.SlideShow2.filters.blendTrans.Play()
		   }
		   
		   j = j + 1
		   if (j > (p-1)) j = 0
		   
		   if(j!=0){
		    	t = setTimeout('runSlideShow()', slideShowSpeed)
		   }else{
		   		j = 0;
				t = setTimeout('runSlideShow()', slideShowSpeed)
		   }
		}
		}

		
		//top nav banner END
		
		
		
		