// JavaScript Document
//script loads based on 'page' variable in each page to determine whether image is static or rollover.
function writeTopNav() {
		
	document.write("<table width=\"680\" height=\"28\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
	document.write("<tr><td valign=\"top\">");
	
	if (page == "home") {
		document.write("<img src=\"http://www.universitytechnologypark.com/images/topnav/home_sel.gif\" width=\"69\" height=\"28\">");
	} else {
	document.write("<a href=\"http://www.universitytechnologypark.com/index.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('home','','http://www.universitytechnologypark.com/images/topnav/home_rl.gif',1)\"><img src=\"http://www.universitytechnologypark.com/images/topnav/home_up.gif\" alt=\"Home\" name=\"home\" width=\"69\" height=\"28\" border=\"0\"></a>");
		
	}
	
	document.write("</td><td valign=\"top\">");
					
	if (page == "overview") {
	document.write("<img src=\"http://www.universitytechnologypark.com/images/topnav/overview_sel.gif\" width=\"114\" height=\"28\">");
	} else {
	document.write("<a href=\"http://www.universitytechnologypark.com/overview/index.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('overview','','http://www.universitytechnologypark.com/images/topnav/overview_rl.gif',1)\"><img src=\"http://www.universitytechnologypark.com/images/topnav/overview_up.gif\" alt=\"Park Overview\" name=\"overview\" width=\"114\" height=\"28\" border=\"0\"></a> ");
		}
								
	document.write("</td><td valign=\"top\">");
	
	if (page == "tbcproperties") {
	document.write("<img src=\"http://www.universitytechnologypark.com/images/topnav/tech_prop_sel.gif\" width=\"155\" height=\"28\">");
		} else {
	document.write("<a href=\"http://www.universitytechnologypark.com/buildingone/index.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('tbcproperties','','http://www.universitytechnologypark.com/images/topnav/tech_prop_rl.gif',1)\"><img src=\"http://www.universitytechnologypark.com/images/topnav/tech_prop_up.gif\" alt=\"TBC Properties\" name=\"tbcproperties\" width=\"155\" height=\"28\" border=\"0\"></a> ");		
			}		
	  
	  document.write("</td><td valign=\"top\">");
	 
	 if (page == "clients") {
		document.write("<img src=\"http://www.universitytechnologypark.com/images/topnav/clients_sel.gif\" width=\"75\" height=\"28\">");
	} else {
		document.write("<a href=\"http://www.universitytechnologypark.com/clients/index.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('clients','','http://www.universitytechnologypark.com/images/topnav/clients_rl.gif',1)\"><img src=\"http://www.universitytechnologypark.com/images/topnav/clients_up.gif\" alt=\"Clients\" name=\"clients\" width=\"75\" height=\"28\" border=\"0\"></a>");
	}
	  
	  document.write("</td><td valign=\"top\">");
	  
	  if (page == "media") {
		document.write("<img src=\"http://www.universitytechnologypark.com/images/topnav/media_room_sel.gif\" width=\"97\" height=\"28\">");
	} else {
		document.write("<a href=\"http://www.universitytechnologypark.com/mediaroom/media_coverage.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('media_room','','http://www.universitytechnologypark.com/images/topnav/media_room_rl.gif',1)\"><img src=\"http://www.universitytechnologypark.com/images/topnav/media_room_up.gif\" alt=\"Media Room\" name=\"media_room\" width=\"97\" height=\"28\" border=\"0\"></a>");
		}
			  document.write("</td><td valign=\"top\">");
	  
	  if (page == "resources") {
		document.write("<img src=\"http://www.universitytechnologypark.com/images/topnav/resources_sel.gif\" width=\"88\" height=\"28\">");
	} else {
		document.write("<a href=\"http://www.universitytechnologypark.com/resources/index.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('resources','','http://www.universitytechnologypark.com/images/topnav/resources_rl.gif',1)\"><img src=\"http://www.universitytechnologypark.com/images/topnav/resources_up.gif\" alt=\"Resources\" name=\"resources\" width=\"88\" height=\"28\" border=\"0\"></a>");
		}
		
	 document.write("</td><td valign=\"top\">");
	 
	 if (page == "leasing") {
		document.write("<img src=\"http://www.universitytechnologypark.com/images/topnav/contacts_sel.gif\" width=\"82\" height=\"28\">"); 
	} else {
	document.write("<a href=\"http://www.universitytechnologypark.com/leasing/index.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('contact','','http://www.universitytechnologypark.com/images/topnav/contacts_rl.gif',1)\"><img src=\"http://www.universitytechnologypark.com/images/topnav/contacts_up.gif\" alt=\"Contact\" name=\"contact\" width=\"82\" height=\"28\" border=\"0\"></a>");	
	}
		
	document.write("</td></tr></table>");

}

