<!-- hide script from the ancients
bannerImages = new Array("common_images/headerSlideshow/slide1.jpg","common_images/headerSlideshow/slide2.jpg","common_images/headerSlideshow/slide3.jpg" ,"common_images/headerSlideshow/slide4.jpg" ,"common_images/headerSlideshow/slide5.jpg" ,"common_images/headerSlideshow/slide6.jpg" )
bannerURL = new Array("projects/TheCountryClub/TheCountryClub.html","projects/CornwallLibrary/CornwallLibrary.html","projects/NobleGreenoughSchool/NobleGreenoughSchool.html","projects/BrimmerMaySchool/BrimmerMay.html","projects/HouseOnOceanME/HouseOnOceanME.html","projects/BrooksSchoolLibrary/BrooksSchoolLibrary.html")
bannerCount = 0
imageCount = bannerImages.length

function rotate(){
	if (document.images){
		if (document.headerSlideshow.complete){
			bannerCount++
			if (bannerCount == imageCount){
				bannerCount = 0
			}
			document.headerSlideshow.src= "http://www.mmarchitectsinc.com/" + bannerImages[bannerCount]
		}
		setTimeout("rotate()", 4000)
	}
} 

function newLocation(){
	document.location.href = "http://www.mmarchitectsinc.com/" + bannerURL[bannerCount]
}
// end hiding-->