// slide show on homer
adImages = new Array
	('/images/CDA-1-A.jpg', 
	'/images/CDA-2-A.jpg',
	'/images/LEG-1-A.jpg',
	'/images/MS-1-A.jpg',
	'/images/MS-2-A.jpg',
	'/images/SR1-A.jpg',
	'/images/SR2-A.jpg');
	thisAd = 0;
	imgCt = adImages.length;
function rotate() {
	if (document.images) {
		thisAd++;
		if (thisAd == imgCt) { thisAd = 0 }
		document.adBanner.src=adImages[thisAd];
		setTimeout('rotate()', 10 *1000);
	}
}