/*-----------------------------------------------------------------------------
 non-home-body.js

 JavaScript code used by the body (as opposed to the header and footer, not the
 Body tag) of pages other than the Home page of Solid Logic's web site.

 Change history (most recent first):

  <1>  01/20/03  Thomas C. Eaton  Created.

 Copyright © 2003 by Solid Logic Computer Solutions Inc.  All rights reserved.
------------------------------------------------------------------------------*/

/*******************************************************************************
 Highlights the specified button in the body navigation bar.
 
 idPrefix  the ID prefix of the HTML elements that this function will highlight.
           For example, if idPrefix is "careers", this function will highlight
           the elements careers-button.
*******************************************************************************/

function body_highlightButton(idPrefix) {
  changeBackgroundColor(idPrefix + "-button", "rgb(232, 250, 232)")
}

/*******************************************************************************
 Unhighlights the specified button in the body navigation bar.
 
 idPrefix  the ID prefix of the HTML elements that this function will
           unhighlight.  For example, if idPrefix is "careers", this function
           will unhighlight the elements careers-button.
*******************************************************************************/

function body_unhighlightButton(idPrefix) {
  changeBackgroundColor(idPrefix + "-button", "rgb(195, 229, 195)")
}

