		// © copyright 2000 The District of Columbia's Office of the Chief Technology Officer
		// This is the roll over Javascript code //
		// First, you must define the image id in the "on" position.

		// For example:
		// picture5on = new Image();
		// then, define the source image:
		// picture5on.src = "some_directory/some_image.gif"

		// Likewise, you also need to define the "off" position.

		// For example:
		// picture5off = new Image();
		// then, define the source image:
		// picture5off.src = "some_directory/some_image.gif"

		// It's simple and cross-browser compatible from 3.0+ and above.

		// Note:
		// The word "picture" can be any name as long as it follows Javascript naming conventions for variables.
		// The word "on" or "off" are simply used to identify their status - any name can be used.
		// All names are CASE SENSITIVE!
		
		// Top red nav bar rollover images in the on position
		
		  image01on = new Image();  image01on.src = "/img/t_nav/nav_on_001.gif";
		  image02on = new Image();  image02on.src = "/img/t_nav/nav_on_002.gif";
		  image03on = new Image();  image03on.src = "/img/t_nav/nav_on_003.gif";
		  image04on = new Image();  image04on.src = "/img/t_nav/nav_on_004.gif";
		  image05on = new Image();  image05on.src = "/img/t_nav/nav_on_005.gif";
		  image06on = new Image();  image06on.src = "/img/t_nav/nav_on_006.gif";
		  image07on = new Image();  image07on.src = "/img/t_nav/nav_on_007.gif";
		  image08on = new Image();  image08on.src = "/img/t_nav/nav_on_008.gif";
		 
		 // Bottom blue nav bar rollover images in the on position 
		
		  image8on = new Image();  image8on.src = "/img/f_nav/nav_on_01.gif";
		  image9on = new Image();  image9on.src = "/img/f_nav/nav_on_02.gif";
		  image10on = new Image();  image10on.src = "/img/f_nav/nav_on_03.gif";
		  image11on = new Image();  image11on.src = "/img/f_nav/nav_on_04.gif";
		  image12on = new Image();  image12on.src = "/img/f_nav/nav_on_05.gif";
		  image13on = new Image();  image13on.src = "/img/f_nav/nav_on_06.gif";
		  
		  // Top red nav bar rollover images in the off position
		
		  image01off = new Image();  image01off.src = "/img/t_nav/nav_off_001.gif";
		  image02off = new Image();  image02off.src = "/img/t_nav/nav_off_002.gif";
		  image03off = new Image();  image03off.src = "/img/t_nav/nav_off_003.gif";
		  image04off = new Image();  image04off.src = "/img/t_nav/nav_off_004.gif";
		  image05off = new Image();  image05off.src = "/img/t_nav/nav_off_005.gif";
		  image06off = new Image();  image06off.src = "/img/t_nav/nav_off_006.gif";
		  image07off = new Image();  image07off.src = "/img/t_nav/nav_off_007.gif";
		  image08off = new Image();  image08off.src = "/img/t_nav/nav_off_008.gif";
		  
		  // Bottom blue nav bar rollover images in the off position 
		
		  image8off = new Image();  image8off.src = "/img/f_nav/nav_off_01.gif";
		  image9off = new Image();  image9off.src = "/img/f_nav/nav_off_02.gif";
		  image10off = new Image();  image10off.src = "/img/f_nav/nav_off_03.gif";
		  image11off = new Image();  image11off.src = "/img/f_nav/nav_off_04.gif";
		  image12off = new Image();  image12off.src = "/img/f_nav/nav_off_05.gif";
		  image13off = new Image();  image13off.src = "/img/f_nav/nav_off_06.gif";
		
		function changeImages() {
			if (document.images) {
		    	for (var i=0; i<changeImages.arguments.length; i+=2) {
		      		document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
		    	}
			}
		}


		// This code is the framed links code, it writes the frameset code dynamically and pulls in //
		// the navigation, footer and header files from static html page located in exlinks folder //
		
		function reference(urlAddress){
		
		document.write("<HTML>");
		document.write("<HEAD>");
		document.write("<TITLE>District of Columbia</TITLE>");
		document.write("</HEAD>");
		document.write("<FRAMESET rows=\"110,1,*\" border=\"0\" frameborder=\"0\" framespacing=\"0\">");
		document.write("<FRAME src=\"/exlinks/header.shtml\" name=\"header\" frameborder=\"0\" scrolling=\"No\" noresize marginwidth=\"0\" marginheight=\"0\" framespacing=\"0\">");
		document.write("<FRAME src=\"/exlinks/blank.shtml\" name=\"blk2\" frameborder=\"0\" scrolling=\"Auto\" noresize marginwidth=\"0\" marginheight=\"0\" framespacing=\"0\">");
		document.write("<FRAMESET cols=\"146,10,*\" border=\"0\" frameborder=\"0\" framespacing=\"0\">");
		document.write("<FRAME src=\"/exlinks/nav.shtml\" name=\"nav\" frameborder=\"0\" scrolling=\"Auto\" noresize marginwidth=\"0\" marginheight=\"0\" framespacing=\"0\">");
		document.write("<FRAME src=\"/exlinks/blank.shtml\" name=\"blk1\" frameborder=\"0\" scrolling=\"Auto\" noresize marginwidth=\"0\" marginheight=\"0\" framespacing=\"0\">");
		document.write("<FRAME src="+ urlAddress +" name=\"win1\" frameborder=\"0\" scrolling=\"Auto\" noresize marginwidth=\"0\" marginheight=\"0\" framespacing=\"0\">");
		document.write("</FRAMESET>");
		document.write("</FRAMESET>");
		document.write("</HTML>");
		}

		function reference_1(urlAddress){
		
		document.write("<HTML>");
		document.write("<HEAD>");
		document.write("<TITLE>District of Columbia</TITLE>");
		document.write("</HEAD>");
		document.write("<FRAMESET rows=\"110,1,*\" border=\"0\" frameborder=\"0\" framespacing=\"0\">");
		document.write("<FRAME src=\"/exlinks/header.shtml\" name=\"header\" frameborder=\"0\" scrolling=\"No\" noresize marginwidth=\"0\" marginheight=\"0\" framespacing=\"0\">");
		document.write("<FRAME src=\"/exlinks/blank.shtml\" name=\"blk2\" frameborder=\"0\" scrolling=\"Auto\" noresize marginwidth=\"0\" marginheight=\"0\" framespacing=\"0\">");
		document.write("<FRAME src="+ urlAddress +" name=\"win1\" frameborder=\"0\" scrolling=\"Auto\" noresize marginwidth=\"0\" marginheight=\"0\" framespacing=\"0\">");
		document.write("</FRAMESET>");
		document.write("</FRAMESET>");
		document.write("</HTML>");
		}
		
		// This code loads the real audio file and the speech text file simultaneously when the sound icon is clicked//
				
		var load = null;
		var sound = null;

		function loadpage() {
		xlink = document.location.search
		xlink = xlink.substring(xlink.indexOf("?")+1);
		}

		function setSound(sound) {
		if (xlink == 1) {
		document.location.href = sound;
		} 
		}	
