<!--
	
	/********************************************
	* Display the slide show for the home page
	********************************************/	

	if (intTotalSlidesNews > 0)
	{
		document.write ('<td rowspan=1>');
		document.write ('<a href="javascript:SlideLink()"><img src=imgNewsSlide1.src alt="Project Slides" name="slide" width="170" height="128" border=0 align="absbottom"><\/a>');
		document.write ('<\/td>');
		document.write ('<td width=10><img alt="" src="../images/clea-1-a.gif" width=10 height=1><\/td>');

		//variable that will increment through the images
		var intStep=1
		var intWhichImage=1

		function SlideIt()
			{	
			//if browser does not support the image object, exit.
			if (!document.images)
				return
				document.images.slide.src=eval("imgNewsSlide" + intStep + ".src")
				intWhichImage = intStep
				if (intStep < intTotalSlidesNews)
					intStep ++
				else
					intStep = 1	
					//call function "slideit()" every x seconds
					setTimeout("SlideIt()", intNewsSlideTimer)
			}
		SlideIt()
		
		function SlideLink()
			{
			if (intWhichImage == 1)
				window.location = strLocationNewsSlide1
			else if (intWhichImage == 2)
				window.location = strLocationNewsSlide2
			else if (intWhichImage == 3)
				window.location = strLocationNewsSlide3
			}
	}

-->
