

	<!--
	
	var imageArray = new Array()
	imageArray[0] = new Image()
	imageArray[0].src = "images/nav/about_down.gif"
	imageArray[1] = new Image()
	imageArray[1].src = "images/nav/research_down.gif"
	imageArray[2] = new Image()
	imageArray[2].src = "images/nav/faculty_down.gif"
	imageArray[3] = new Image()
	imageArray[3].src = "images/nav/news_down.gif"
	imageArray[4] = new Image()
	imageArray[4].src = "images/nav/involved_down.gif"
	imageArray[5] = new Image()
	imageArray[5].src = "images/nav/contact_down.gif"
	imageArray[5] = new Image()
	imageArray[5].src = "images/nav/sitemap_down.gif"
	
	//-- CORRESPONDS TO STRING BELOW
	var randArray = new Array()
	randArray[0] = "images/rotate/image_1.gif"
	randArray[1] = "images/rotate/image_2.gif"
	randArray[2] = "images/rotate/image_3.gif"
	randArray[3] = "images/rotate/image_4.gif"
	randArray[4] = "images/rotate/image_5.gif"
	randArray[5] = "images/rotate/image_6.gif"
	randArray[6] = "images/rotate/image_7.gif"
	randArray[7] = "images/rotate/image_8.gif"
	randArray[8] = "images/rotate/image_9.gif"
	randArray[9] = "images/rotate/image_10.gif"
	randArray[10] = "images/rotate/image_11.gif"

	
	//-- CORRESPONDS TO IMAGE ABOVE
	var randString = new Array()
	randString[0] = "View of the University of Washington campus in Seattle."
	randString[1] = "View of the University of Washington campus in Seattle."
	randString[2] = "View of the University of Washington campus in Seattle."
	randString[3] = "View of the University of Washington campus in Seattle."
	randString[4] = "View of the University of Washington campus in Seattle."
	randString[5] = "View of the University of Washington campus in Seattle."
	randString[6] = "View of the University of Washington campus in Seattle."
	randString[7] = "View of the University of Washington campus in Seattle."
	randString[8] = "View of the University of Washington campus in Seattle."
	randString[9] = "View of the University of Washington campus in Seattle."
	randString[10] = "View of the University of Washington campus in Seattle."

	
	function roll(name,state) {
		var thisImage = eval("document." + name)
		thisImage.src = "images/nav/" + name + "_" + state + ".gif"
		}
		
	function makeWindow(thisNum) {
		
		var useNum = (thisNum - 1)
		
		var style = "<style type=\"text/css\">h3{font-family: Verdana, Arial, Helvetica; font-size: 16px; color: #003399}"
		style += "p{font-family: Verdana, Arial, Helvetica; font-size: 12px; color: #ffffff}</style>"
	
		var winContent = "<html><head><title>About this Image<\/title>" + style + "<\/head><body bgcolor=\"#003399\">\n"
		winContent += "<h3><font color=\"#cccc33\">About this Image:<\/font><\/h3>\n<p>"
		winContent += randString[useNum] + "</p>\n"
		winContent += "<p> <font size=\"1\" color=\"#cccc33\">&copy; 2003 University of Washington<br>Institute for Learning and Brain Sciences<br>ilabs@u.washington.edu<\/font>"
		winContent += "<div align=\"center\"><form><input type=\"button\" name=\"close\" value=\"Close\" onClick=\"window.close()\"><\/form><\/div>"		
		winContent += "<\/body><\/html>"		
		
		var infoWin = window.open("","thisWin","width=300,height=340,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,screenX=300,screenY=300")
		infoWin.document.write(winContent)
		infoWin.document.close()
		}
		
	// hide from older -->
