function doHeader(thePage){

  var homeButton = "button_home_off.gif";
  var servicesButton = "button_services_off.gif";
  var ratesButton = "button_rates_off.gif";
  var roomsButton = "button_rooms_off.gif";
  var promotionsButton = "button_promotions_off.gif";
  var contactButton = "button_contact_off.gif";

  var homeMo = "onmouseover=\"on(this.id)\" onmouseout=\"off(this.id)\"";
  var servicesMo = "onmouseover=\"on(this.id)\" onmouseout=\"off(this.id)\"";
  var ratesMo = "onmouseover=\"on(this.id)\" onmouseout=\"off(this.id)\"";
  var roomsMo = "onmouseover=\"on(this.id)\" onmouseout=\"off(this.id)\"";
  var promotionsMo = "onmouseover=\"on(this.id)\" onmouseout=\"off(this.id)\"";
  var contactMo = "onmouseover=\"on(this.id)\" onmouseout=\"off(this.id)\"";

  if(thePage == 'button_home'){
    homeButton = "button_home_on.gif";
    homeMo = "";
  }
  if(thePage == 'button_services'){
    servicesButton = "button_services_on.gif";
    servicesMo = "";
  }
  if(thePage == 'button_rates'){
    ratesButton = "button_rates_on.gif";
    ratesMo = "";
  }
  if(thePage == 'button_rooms'){
    roomsButton = "button_rooms_on.gif";
    roomsMo = "";
  }
  if(thePage == 'button_promotions'){
    promotionsButton = "button_promotions_on.gif";
    promotionsMo = "";
  }
  if(thePage == 'button_contact'){
    contactButton = "button_contact_on.gif";
    contactMo = "";
  }


  document.write("    <div id=\"header\" style=\"background-image:url('images/bg_header.jpg');\">" +
                 "        <img src=\"images/logo.gif\" id=\"logo\"/>" +
                 "        <div id=\"menu\">" +
                 "            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" +
                 "            <a" +
                 "                href=\"default.asp\"" +
                 "                class=\"menu\"><img " + homeMo +
                 "                                             id=\"button_home\"" +
                 "                                             src=\"images/" + homeButton + "\" /></a>" +
                 "            <a" +
                 "                href=\"rooms.html\"" +
                 "                class=\"menu\"><img "  + roomsMo +
                 "                                             id=\"button_rooms\"" +
                 "                                             src=\"images/" + roomsButton + "\" /></a>" +
                 "            <a" +
                 "                href=\"rates.html\"" +
                 "                class=\"menu\"><img "  + ratesMo +
                 "                                             id=\"button_rates\"" +
                 "                                             src=\"images/" + ratesButton + "\"/></a>" +
                 "            <a" +
                 "                href=\"services.html\"" +
                 "                class=\"menu\"><img "  + servicesMo +
                 "                                             id=\"button_services\"" +
                 "                                             src=\"images/" + servicesButton + "\"/></a>" +
		 "            <a" +
                 "                href=\"promotions.html\"" +
                 "                class=\"menu\"><img "  + promotionsMo +
                 "                                             id=\"button_promotions\"" +
                 "                                             src=\"images/" + promotionsButton + "\"/></a>" +
                 "        <a" +
                 "                href=\"contact.html\"" +
                 "                class=\"menu\"><img " + contactMo +
                 "                                             id=\"button_contact\"" +
                 "                                                src=\"images/" + contactButton + "\" /></a>" +
                 "        </div>");
}