// * ************************************************************* *
// *                                                               *
// * JavaScript file with variables that writes the navigation row *
// *                                                               *
// * The code itself is in the NavCode.js file.                    *
// * ************************************************************* *


// * ************************************************* *
// * Specify the submenu contents and links            *
// * ************************************************* *

//Contents for About Us submenu
var menuAboutUs=new Array()
menuAboutUs[0]='<a href="who.htm">Who we are</a>'
menuAboutUs[1]='<a href="what.htm">What we do</a>'
menuAboutUs[2]='<a href="how.htm">How we do it</a>'
menuAboutUs[3]='<a href="why.htm">Why select us</a>'
menuAboutUs[4]='<a href="management.htm">Leadership</a>'

var menuServices=new Array()
menuServices[0]='<a href="documentation.htm">Documentation</a>'
menuServices[1]='<a href="strategy.htm">Technology strategy</a>'
menuServices[2]='<a href="webdesign.htm">Web site design</a>'
menuServices[3]='<a href="UIdesign.htm">UI design</a>'
menuServices[4]='<a href="graphicdesign.htm">Graphic design</a>'
menuServices[5]='<a href="training.htm">Training</a>'



// **************************************************
// **************************************************
// * The end of the submenu contents and links.     *
// * The rest of this file defines the contents of  *
// *    the navigation row.                         *
// **************************************************
// **************************************************

//  Navigation row table definition
document.write("<div align=\"center\">");
document.write("<table width=\"859\" height=\"30\" cellpadding=\"0\" cellspacing=\"0\">");
document.write("<tr>");

//  Navigation line on left
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"1\">");
document.write("<img src=\"Images/Body-left.png\" width=\"1\" height=\"30\" alt=\"\" border=\"0\"></td>");

//  Navigation links start here

//  Home
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"111\" background=\"Images/Nav-back.png\">");
document.write("<a href=\"index.htm\" class=\"Nav\"><div class=\"Nav1\">");
document.write("Home</div></a></td>");

//  Services
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"111\" background=\"Images/Nav-back.png\">");
document.write("<a onmouseover=\"dropdownmenu(this, event, menuServices, '180px')\" ");
document.write("onmouseout=delayhidemenu() ");
document.write("href=\"documentation.htm\" class=\"Nav\"><div class=\"Nav2\">");
document.write("Services</div></a></td>");

//  About Us
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"111\" background=\"Images/Nav-back.png\">");
document.write("<a onmouseover=\"dropdownmenu(this, event, menuAboutUs, '160px')\" ");
document.write("onmouseout=delayhidemenu() ");
document.write("href=\"who.htm\" class=\"Nav\"><div class=\"Nav2\">");
document.write("About Us</div></a></td>");

//  Our Clients
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"111\" background=\"Images/Nav-back.png\">");
document.write("<a href=\"clients.htm\" class=\"Nav\"><div class=\"Nav3\">");
document.write("Our Clients</div></a></td>");

//  Contact Us
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"111\" background=\"Images/Nav-back.png\">");
document.write("<a href=\"contact.htm\" class=\"Nav\"><div class=\"Nav3\">");
document.write("Contact Us</div></a></td>");

//  Blog
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"231\" background=\"Images/Nav-back.png\">");
document.write("<a href=\"http://www.useraid.com/blog\" class=\"Nav\"><div class=\"Nav1\">");
document.write("Answers for All Blog</div></a></td>");

//  Navigation links end here

//  Blank Nav Area on Right
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"56\" background=\"Images/Nav-back.png\">");
document.write("&nbsp;</td>");

//  Shaded Area on Right
document.write("<td nowrap=\"nowrap\" valign=\"top\" width=\"16\" background=\"Images/Body-right.png\">");
document.write("&nbsp;</td>");

document.write("</tr>");
document.write("</table>");
document.write("</div>");


