<!--
function init() {
			if (TransMenu.isSupported()) {
				TransMenu.initialize();
				menu1.onactivate = function() { document.getElementById("about").className = "hover"; };
				menu1.ondeactivate = function() { document.getElementById("about").className = ""; };
			}
		}
	// (C) 2000 www.CodeLifter.com
	// Set slideShowSpeed (milliseconds)
	var slideShowSpeed = 5000
	
	// Duration of crossfade (seconds)
	var crossFadeDuration = 3
	
	// =======================================
	// do not edit anything below this line
	// =======================================
	
	var t
	var j = 0
	var k = 0
	var l = 0		
	var p = Pic.length
	var q = Pic2.length
	var r = Pic3.length	
	
	var preLoad = new Array()
	for (i = 0; i < p; i++){
	   preLoad[i] = new Image()
	   preLoad[i].src = Pic[i]
	}

	var preLoad2 = new Array()
	for (i = 0; i < q; i++){
	   preLoad2[i] = new Image()
	   preLoad2[i].src = Pic2[i]
	}

	var preLoad3 = new Array()
	for (i = 0; i < r; i++){
	   preLoad3[i] = new Image()
	   preLoad3[i].src = Pic3[i]
	}
	
	function runSlideShow(){
	   if (document.all)
	   {
		  document.images.SlideShow.style.filter="blendTrans(duration=2)"
		  document.images.SlideShow2.style.filter="blendTrans(duration=2)"
		  document.images.SlideShow3.style.filter="blendTrans(duration=2)"		  		  
		  document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
		  document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)"
		  document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)"		  		  
		  document.images.SlideShow.filters.blendTrans.Apply()  
		  document.images.SlideShow2.filters.blendTrans.Apply() 
		  document.images.SlideShow3.filters.blendTrans.Apply() 		  		      
	   }

	   document.images.SlideShow.src = preLoad[j].src	   
	   document.images.SlideShow2.src = preLoad2[k].src	
	   document.images.SlideShow3.src = preLoad3[l].src		   	   

	   if (document.all){
		  document.images.SlideShow.filters.blendTrans.Play()
		  document.images.SlideShow2.filters.blendTrans.Play()
		  document.images.SlideShow3.filters.blendTrans.Play()		  		  		  
	   }
	   j = j + 1
	   if (j > (p-1)) j=0

	   k = k + 1
	   if (k > (q-1)) k=0

	   l = l + 1
	   if (l > (r-1)) l=0

	   t = setTimeout('runSlideShow()', slideShowSpeed)
	}
	-->