// == FILE ==================================================================
// name       : logo.js
// project    : BoarderZone: WebSite
// created    : Leon Poyyayil - 2004.06.17
// language   : javascript
// environment: HTML 4.01
// copyright  : (c) 1990-2010 by Leon Poyyayil (private), Switzerland
// license    : this is free software licensed under the GPL. see COPYING
// ==========================================================================


// ----- global variables -----
var cLogoNormal = null;
var cLogoActive = null;


// --------------------------------------------------------------------------
// 'activates' the logo image
// --------------------------------------------------------------------------
function logo_mouseover(
  pPrefix,
  pImage,
  pStyle,
  pPostfix
)
{
  if ( cLogoActive == null ) {
    cLogoActive = new Image();
    cLogoActive.src = pPrefix + "img/logo-" + pStyle + "-active.gif" + pPostfix
  }
  pImage.src = cLogoActive.src;
} // logo_mouseover


// --------------------------------------------------------------------------
// 'resets' the logo image
// --------------------------------------------------------------------------
function logo_mouseout(
  pPrefix,
  pImage,
  pStyle,
  pPostfix
)
{
  if ( cLogoNormal == null ) {
    cLogoNormal = new Image();
    cLogoNormal.src = pPrefix + "img/logo-" + pStyle + ".gif" + pPostfix
  }
  pImage.src = cLogoNormal.src;
} // logo_mouseout


// == EOF ===================================================================

