// -------------------------------------------//
// Script Name  embed_menu.js                 //
// Author       Wallace Nicoll                //
// Create Date  12th December 2005            //
// Description  script to have common         //
//              top menu on all pages         //
// -------------------------------------------//
// Amendments:                                //
//                                            //
// -------------------------------------------//

// display different header graphic depending on month of year - winter header if Nov (10) thro March (2)

today = new Date();
currMonth = today.getMonth();
if ((currMonth == 0) || (currMonth == 1) || (currMonth == 2) || (currMonth == 10) || (currMonth == 11))
{
  document.writeln("<p><IMG SRC='./images/GMheader_winter.jpg' VALIGN=middle WIDTH=750 height=150 ALT='Glen and Mountain Guides photos'></p>")
}
else
{
  document.writeln("<p><IMG SRC='./images/GMheader_summer.jpg' VALIGN=middle WIDTH=750 height=150 ALT='Glen and Mountain Guides photos'></p>")
}

// display the menu

document.writeln("<FONT FACE='Verdana' SIZE='-1' COLOR='white'>")
document.writeln("<p ALIGN=center>| <A class='navbar' HREF='./index.shtml' >Intro</A> |")
document.writeln("     <A class='navbar' HREF='./programme.html'>Programme</A> |")
document.writeln("     <A class='navbar' HREF='./booking.html'>Booking</A> |")
document.writeln("     <A class='navbar' HREF='./equipment.html'>Equipment</A> |")
document.writeln("     <A class='navbar' HREF='./gallery.html'>Gallery</A> |")
document.writeln("     <A class='navbar' HREF='./links.html'>Links</A> |")
document.writeln("     <A class='navbar' HREF='./site.html'>Site Updates</A> |")
document.writeln("     <A class='navbar' HREF='./contact.html'>Contact Janis</A> |</p>")
   
// -------------------------------------------//
// End of Embedded Document                   //
// -------------------------------------------//





