function doStuff() {
	InitMenu();
	rotate();
}

<!-- image rotator 

// declare the banner image array
adImages = new Array
(
"images/animate/CCtv.jpg",
"images/animate/interger3.jpg", 
"images/animate/lift.jpg",
"images/animate/roof-PV2.jpg",
"images/animate/water.jpg",
"images/animate/Boilerplant.jpg",
"images/animate/condensation.jpg", 
"images/animate/corridorlighting.jpg",
"images/animate/edmonton10.jpg",
"images/animate/feilden.jpg",
"images/animate/shading.jpg", 
"images/animate/windturbineson-building2.jpg",
"images/animate/landscape.jpg",
"images/animate/layout.jpg"
)
	thisAd = -1
	imgCt = adImages.length

	function rotate() {
		if (document.images) {
			if (document.susHomePix.complete != null) {
				thisAd++
				
				if (thisAd == imgCt) {
					thisAd = 0
				}				
				document.susHomePix.src=adImages[thisAd]				
			}
		  	setTimeout("rotate()", 2* 3000)
	  	}
	}
	
//-->

