		
		// (C) 2000 www.CodeLifter.com
		// http://www.codelifter.com
		// Free for all users, but leave in this  header
		// NS4-6,IE4-6
		// Fade effect only in IE; degrades gracefully
		
		// =======================================
		// set the following variables
		// =======================================
		
// Set slideShowSpeed (milliseconds)
		var slideShowSpeed = 1500
		
// Duration of crossfade (seconds)
		var crossFadeDuration = 2
		
// Specify the image files
		var Pic = new Array() // don't touch this
		// to add more images, just continue
		// the pattern, adding to the array below
		
		Pic = new Array(
		'Images/Slideshow/header_general00.jpg',
		'Images/Slideshow/header_general01.jpg',
		'Images/Slideshow/header_general02.jpg',
		'Images/Slideshow/header_general09.jpg',
		'Images/Slideshow/header_general10.jpg',
		'Images/Slideshow/header_general13.jpg',
		'Images/Slideshow/header_general06.jpg',
		'Images/Slideshow/header_general11.jpg',
		'Images/Slideshow/header_general08.jpg',
		'Images/Slideshow/header_general09.jpg',
		'Images/Slideshow/header_general04.jpg',
		'Images/Slideshow/header_general05.jpg',
		'Images/Slideshow/header_general12.jpg',
		'Images/Slideshow/header_general14.jpg',
		'Images/Slideshow/header_general07.jpg'		
		);
		
// =======================================
// do not edit anything below this line
// =======================================
		
		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 runSlideShow1(){
		   if (document.all){
		      document.images.SlideShow1.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)"
		      document.images.SlideShow1.filters.blendTrans.Apply()
		   }
		   document.images.SlideShow1.src = preLoad[j].src
		   if (document.all){
		      document.images.SlideShow1.filters.blendTrans.Play()
		   }
		   j = j + 1
		   if (j > (p-1)) j=0
		   t = setTimeout('runSlideShow2()', slideShowSpeed)
		
		}
		function runSlideShow2(){
		   if (document.all){
		      document.images.SlideShow2.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)"
		      document.images.SlideShow2.filters.blendTrans.Apply()
		   }
		   document.images.SlideShow2.src = preLoad[j].src
		   if (document.all){
		      document.images.SlideShow2.filters.blendTrans.Play()
		   }
		   j = j + 1
		   if (j > (p-1)) j=0
		   t = setTimeout('runSlideShow3()', slideShowSpeed)
		}
		function runSlideShow3(){
		   if (document.all){
		      document.images.SlideShow3.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)"
		      document.images.SlideShow3.filters.blendTrans.Apply()
		   }
		   document.images.SlideShow3.src = preLoad[j].src
		   if (document.all){
		      document.images.SlideShow3.filters.blendTrans.Play()
		   }
		   j = j + 1
		   if (j > (p-1)) j=0
		   t = setTimeout('runSlideShow4()', slideShowSpeed)
		}
		function runSlideShow4(){
		   if (document.all){
		      document.images.SlideShow4.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow4.style.filter="blendTrans(duration=crossFadeDuration)"
		      document.images.SlideShow4.filters.blendTrans.Apply()
		   }
		   document.images.SlideShow4.src = preLoad[j].src
		   if (document.all){
		      document.images.SlideShow4.filters.blendTrans.Play()
		   }
		   j = j + 1
		   if (j > (p-1)) j=0
		   t = setTimeout('runSlideShow5()', slideShowSpeed)
		}
		function runSlideShow5(){
		   if (document.all){
		      document.images.SlideShow5.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow5.style.filter="blendTrans(duration=crossFadeDuration)"
		      document.images.SlideShow5.filters.blendTrans.Apply()
		   }
		   document.images.SlideShow5.src = preLoad[j].src
		   if (document.all){
		      document.images.SlideShow5.filters.blendTrans.Play()
		   }
		   j = j + 1
		   if (j > (p-1)) j=0
		   t = setTimeout('runSlideShow1()', slideShowSpeed)
		}
		//-->

