		  <!--
		  // 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 c2=1; var t2; var fadeInObj2; var fadeOutObj2;

		  function fade2(fadeIn,fadeOut) {
			fadeInObj2 = document.getElementById(fadeIn);
			fadeOutObj2 = document.getElementById(fadeOut);

			fadeInObj2.style.opacity = 0;
			fadeInObj2.style.filter = 'alpha(opacity=0)';
			fadeInObj2.style.visibility = 'visible';

			for (var i=0;i<11;i++){
			  setTimeout('setOpacity2('+i+')',100*i);
			}
		  }

		  function setOpacity2(value) {
			fadeInObj2.style.opacity = value/10; // For IE
			fadeInObj2.style.filter = 'alpha(opacity=' + value*10 + ')'; // For Mozilla
			fadeOutObj2.style.opacity = (10-value)/10;
			fadeOutObj2.style.filter = 'alpha(opacity=' + (10-value)*10 + ')';

			if (fadeOutObj2.style.opacity==0){fadeOutObj2.style.visibility = 'hidden';}
		  }

		  function timedChange2()
			{
			switch(c2)
				{
				case 1:
				  fade2('hm-box-content1','hm-box-content3'); c2=2; break;
				case 2:
				  fade2('hm-box-content2','hm-box-content1'); c2=3; break;
				case 3:
				  fade2('hm-box-content3','hm-box-content2'); c2=1; break;
				}
				
			t2=setTimeout("timedChange2()",8000);
			}
		  
		  timedChange2()
		  //-->
