// JavaScript Document
  function link(thisLink){
    var goLink;
	if (thisLink=="about")
	{goLink="about_us.html";}
	else if (thisLink=="products")
	{goLink="products.html";}
	else if (thisLink=="capabile")
	{goLink="capabilities.html";}
	else if (thisLink=="contact")
	{goLink="contact_us.html";}
	
	window.location.href=goLink; 
  } 