//mulitple rotating banners
        
        
  deptImages1 = new Array("images/dept1.jpg","images/dept4.jpg","images/dept5.jpg")
	deptImages2 = new Array("images/dept5.jpg","images/dept6.jpg","images/dept3.jpg")
	deptImages3 = new Array("images/dept3.jpg","images/dept2.jpg","images/dept1.jpg")
	thisDept1 = 0
	thisDept2 = 0
	thisDept3 = 0
	imgCt1 = deptImages1.length
	imgCt2 = deptImages2.length
	imgCt3 = deptImages3.length

	function rotate() {
		if (document.images) {
			thisDept1++
			if (thisDept1 == imgCt1) {
				thisDept1 = 0
			}
			document.deptBanner1.src=deptImages1[thisDept1]

			thisDept2++
			if (thisDept2 == imgCt2) {
				thisDept2 = 0
			}
			document.deptBanner2.src=deptImages2[thisDept2]
			
			thisDept3++
			if (thisDept3 == imgCt3) {
				thisDept3 = 0
			}
			document.deptBanner3.src=deptImages3[thisDept3]

		  	setTimeout("rotate()", 3 * 1500)
	  	}
	}
