	        function changeIt(thisLI) {
		    thisLI.style.background="#944115";
		}
		function changeBack(thisLI) {
		    thisLI.style.background="url('./img/rightBarBG.jpg')";
		}
		function changeBack2(thisLI) {
		    thisLI.style.background="#7D3D05";
		}


	        var slideShowSpeed = 7000;
	        var crossFadeDuration = 3;
	        var Pic = new Array(); // don't touch this
	        var t;
	        var j = 0;
		var p;
	        var preLoad1 = new Array();
	        var preLoad2 = new Array();
	        var preLoad3 = new Array();

  	        function runSlideShow(){
		    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.SlideShow2.style.filter="blendTrans(duration=2)";
			document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)";
          		document.images.SlideShow2.filters.blendTrans.Apply();
			document.images.SlideShow3.style.filter="blendTrans(duration=2)";
			document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)";
          		document.images.SlideShow3.filters.blendTrans.Apply();
		    }
		    document.images.SlideShow1.src = preLoad1[j].src;
       		    document.images.SlideShow2.src = preLoad2[j].src;
       		    document.images.SlideShow3.src = preLoad3[j].src;

		    if (document.all){
          	        document.images.SlideShow1.filters.blendTrans.Play();
             	        document.images.SlideShow2.filters.blendTrans.Play();
			document.images.SlideShow3.filters.blendTrans.Play();
       		    }
       		
		    j = j + 1;
	       	    if (j > (p-5)) 
		        j=0;	
       		    t = setTimeout('runSlideShow()', slideShowSpeed);
    		}


		function pictureSlide(pic1,pic2,pic3,pic4,pic5,pic6) {
		    Pic[0] = pic1;
		    Pic[1] = pic2;
		    Pic[2] = pic3;
		    Pic[3] = pic4;
		    Pic[4] = pic5;
		    Pic[5] = pic6;
 	            p = Pic.length;
		    for (i = 0; i < 2; i++){
		        preLoad1[i] = new Image();
			preLoad2[i] = new Image();
			preLoad3[i] = new Image();
		        preLoad1[i].src = Pic[i];
			preLoad2[i].src = Pic[i+2];
			preLoad3[i].src = Pic[i+4];
		    }

       		 }   


  		if (navigator.appName.substring(0,8) == 'Netscape') {
			document.writeln('<style type="text/css" media="screen">\n');
			document.writeln('#supportingText {height: 89.7%;}\n');
			document.writeln('#frameBottom {background: url(./img/frameBottomNS.jpg);}\n');
			document.writeln('#roundButtons {display:block;}\n');
			document.writeln('</style>');
		} 	