		  <!--
		  // XHTML W3C compliant image and div fader developed by Estona.com
		  // Use of this code requires the following credit placed as html on the same page:
		  // <a href="http://www.estona.com/">XHTML W3C compliant image fader</a>
		  // The above html must not be commented out or set with the CSS 'display' property as 'none' or the CSS 'visibility' property as 'hidden'
		  // but it can be styled to be as small as you like, tranparent or the same colour as the background

		  var c=1; var t; var fadeInObj; var fadeOutObj;

		  function fade(fadeIn,fadeOut) {
			fadeInObj = document.getElementById(fadeIn);
			fadeOutObj = document.getElementById(fadeOut);

			fadeInObj.style.opacity = 0;
			fadeInObj.style.filter = 'alpha(opacity=0)';
			fadeInObj.style.visibility = 'visible';

			for (var i=0;i<11;i++){
			  setTimeout('setOpacity('+i+')',100*i);
			}
		  }

		  function setOpacity(value) {
			fadeInObj.style.opacity = value/10; // For IE
			fadeInObj.style.filter = 'alpha(opacity=' + value*10 + ')'; // For Mozilla
			fadeOutObj.style.opacity = (10-value)/10;
			fadeOutObj.style.filter = 'alpha(opacity=' + (10-value)*10 + ')';

			if (fadeOutObj.style.opacity==0){fadeOutObj.style.visibility = 'hidden';}
		  }

		  function timedChange()
			{
			switch(c)
				{
				case 1:
				  fade('slide1','slide8'); c=2; break;
				case 2:
				  fade('slide2','slide1'); c=3; break;
				case 3:
				  fade('slide3','slide2'); c=4; break;
				case 4:
				  fade('slide4','slide3'); c=5; break;
				case 5:
				  fade('slide5','slide4'); c=6; break;
				case 6:
				  fade('slide6','slide5'); c=7; break;
				case 7:
				  fade('slide7','slide6'); c=8; break;
				case 8:
				  fade('slide8','slide7'); c=1; break;
				}
			t=setTimeout("timedChange()",8000);
			}
		  
		  timedChange()
		  //-->
