//  Navigation Bar for LaCas-Consultants.com

function make_stylesheet(d) {

  d.write ('<style>') ;
  d.write ('a.navigator {') ;
  if (document.bgColor=='#c0c0c0' || document.bgColor=='#54ccca')
     d.write(' color: gray;') ;
  else
     d.write ('  color: silver;') ;
  d.write ('  font-weight: bold;') ;
  d.write ('  font-size: 8pt;') ;
  d.write ('  font-family: arial,helvetica,sans-serif;') ;
  d.write ('  text-decoration: underline;') ;
  d.write ('}') ;
  if (document.bgColor=='#c0c0c0' || document.bgColor== '#54ccca')
    d.write ('a:visited.navigator{color: gray}') ;
  else
    d.write ('a:visited.navigator{color: silver}') ;
  d.write ('a:hover.navigator{') ;
  d.write ('  background-color: silver;') ;
  d.write ('  color: #D50000;') ;
  d.write ('  font-weight: bold;') ;
  d.write ('  font-size: 8pt;') ;
  d.write ('  font-family: arial,helvetica,sans-serif;') ;
  d.write ('  text-decoration: underline;') ;
  d.write ('}') ;
  d.write ('</style>') ;
}

function make_navigation_bar(d) {

  var path ;

  if (d.URL.indexOf('LaCas') >= 0)
     path = '' ;
  d.write ('<center>') ;
  d.write ('<a class="navigator" href="'+path+'Profile.htm" onMouseOver="status=&#39;Go to Company Profile&#39; ; return true ;">&nbsp;Company&nbsp;Profile&nbsp;|</a> ') ;
  d.write ('<a class="navigator" href="'+path+'Brochures.htm" onMouseOver="status=&#39;Go to Brochures&#39; ; return true ;">&nbsp;Brochures&nbsp;|</a> ') ;
  d.write ('<a class="navigator" href="'+path+'Projects.htm" onMouseOver="status=&#39;Go to Featured Projects&#39; ; return true ;">&nbsp;Featured&nbsp;Projects&nbsp;|</a> ') ;
  d.write ('<a class="navigator" href="'+path+'Inquiries.htm" onMouseOver="status=&#39;Go to Corporate Inquiries&#39; ; return true ;">&nbsp;Corporate&nbsp;Inquiries&nbsp;|</a> ') ;
  d.write ('<a class="navigator" href="'+path+'Testimonials.htm" onMouseOver="status=&#39;Go to Testimonials&#39; ; return true ;">&nbsp;Testimonials&nbsp|</a> ') ;
  d.write ('<a class="navigator" href="'+path+'Awards.htm" onMouseOver="status=&#39;Go to Awards&#39; ; return true ;">&nbsp;Awards&nbsp|</a> ') ;
  d.write ('<a class="navigator" href="http://www.lacas-consultants.com" target="_top" onMouseOver="status=&#39;Go to Home Page&#39; ; return true ;">&nbsp;Home&nbsp;|</a> ') ;
  d.write ('</center>') ;
}

document.open() ;
make_stylesheet(document) ;
make_navigation_bar(document) ;
document.close() ;
