<!--


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 = 3000
	
	// 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 m = 0
	
	var p = Pic.length
	var q = Pic2.length
	var r = Pic3.length	
	var s = Pic4.length	
	
	var preLoad = new Array()
	var preLoad2 = new Array()
	var preLoad3 = new Array()
	var preLoad4 = new Array()
	
	for (i = 0; i < p; i++){
	   preLoad[i] = new Image()
	   preLoad[i].src = Pic[i]
	   //preLoad[i].title = title[i]
	   
/*	   preLoad2[i] = new Image()
	   preLoad2[i].src = Pic2[i]
	   preLoad2[i].title = title2[i]  */
	}

	
	for (i = 0; i < q; i++){
	   preLoad2[i] = new Image()
	   preLoad2[i].src = Pic2[i]
	   //preLoad2[i].title = title2[i]
	}


	for (i = 0; i < r; i++){
	   preLoad3[i] = new Image()
	   preLoad3[i].src = Pic3[i]
	   //preLoad3[i].title = title3[i]
	}
	
	for (i = 0; i < s; i++){
	   preLoad4[i] = new Image()
	   preLoad4[i].src = Pic4[i]
	   //preLoad3[i].title = title3[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.SlideShow4.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.SlideShow4.filters.blendTrans.Apply()
	   }

	   document.images.SlideShow.src = preLoad[j].src	   
	   document.images.SlideShow2.src = preLoad2[k].src	
	   document.images.SlideShow3.src = preLoad3[l].src
	   document.images.SlideShow4.src = preLoad4[m].src

	   document.images.SlideShow.title = preLoad[j].title
	   document.images.SlideShow2.title = preLoad2[k].title
	   document.images.SlideShow3.title = preLoad3[l].title
	   document.images.SlideShow4.title = preLoad3[m].title

	   if (document.all){
		  document.images.SlideShow.filters.blendTrans.Play()
		  document.images.SlideShow2.filters.blendTrans.Play()
		  document.images.SlideShow3.filters.blendTrans.Play()
		  document.images.SlideShow4.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
	   
	   m = m + 1
	   if (m > (s-1)) m=0

	   t = setTimeout('runSlideShow()', slideShowSpeed)
	}
	-->
