<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var topimage		= "yes" 		//  SHOW IMAGE AT THE TOP OF THE MENU
var botimage 		= "yes" 		//  SHOW IMAGE AT THE BOTTOM OF THE MENU
//var path = "C:/ddWork/SB/gViewTek/homepage/new/"
var path = "http://www.gviewtek.com/"

document.write('<DIV id="menulocation" style="z-index: 10;" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');
   if (topimage == "yes") {
document.write('<img src="'+path+'picts/menu-top-1.gif" width="154" height="81" class="menutrans"></a><br>');
document.write('<img src="'+path+'picts/menu-top-2.gif" width="154" height="39"></a><br>');
}
document.write('<ul id="top-nav">');

// START MENU LINKS - EDIT BELOW THIS AREA
document.write('  <li class="menuT"><a href="'+path+'index.html">Home</a></li>');

document.write('  <li class="menuT"><a href="'+path+'about.htm">About Us</a>'); 
//document.write('  <li class="menuT"><a href="'+path+'about.htm">Company Info</a>'); 
//document.write('    <ul id="sub-nav">');
//document.write('      <li><a href="'+path+'about.htm">About Us</a></li>');
//document.write('      <li><a href="'+path+'clients.htm">Clients</a></li>');
//document.write('      <li><a href="'+path+'">Company News</a></li>');
//document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="'+path+'service.htm">Services</a>');
//document.write('    <ul id="sub-nav">');
//document.write('      <li><a href="'+path+'service.htm">Project Solutions</a></li>');
//document.write('      <li><a href="'+path+'service_gis.htm">Vis & Imaging Services</a></li>');
//document.write('      <li><a href="'+path+'service_gis.htm">GIS Services</a></li>');
//document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="'+path+'products.htm">Products</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="'+path+'products.htm">Software</a></li>');
document.write('      <li><a href="'+path+'products/src.htm">Source Code</a></li>');
//document.write('      <li><a href="'+path+'products/hw.htm">Hardware</a></li>');
document.write('      <li><a href="'+path+'products/buy.htm">How to Buy</a></li>');
document.write('    </ul>');
document.write('  </li>');

/*
document.write('  <li class="menuT"><a href="'+path+'resources/downloads.htm">Resources</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="'+path+'resources/downloads.htm">Downloads</a></li>');
document.write('      <li><a href="'+path+'resources/mailinglist.htm">Mailing List</a></li>');
document.write('    </ul>');
document.write('  </li>');
*/
document.write('  <li class="menuT"><a href="'+path+'resources/downloads.htm">Downloads</a>');
document.write('  </li>');

//document.write('  <li class="menuT"><a href="'+path+'clients.htm">Clients</a></li>');
//document.write('  <li class="menuT"><a href="'+path+'careers.htm">Careers</a></li>');
document.write('  <li class="menuT"><a href="'+path+'contact.htm">Contact Us</a></li>');

// END LINKS //

document.write('</ul>');
document.write('</td></tr></table></DIV>');

///////////////////////////////////////
function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}
}
window.onload = IEHoverPseudo;

//  End -->