/*
###############################################################################
#
# File:     brands/my/js/my.js
#
# Contents: JavaScript used by Master (My-brand) pages.
#
# Used by:
#   - brands/my/htm/wrapper.htm
#
# Modifications:
#   - 2009-05-26  txe  Started initial creation.
#   - 2009-05-29  txe  Finished initial creation.
#   - 2009-06-08  txe  Added setup hover for cpTopicsNavList.
#
###############################################################################
*/

// ALWAYS RUN //

if (this.addLoadEvent)
{
//  alert("addLoadevent");
  addLoadEvent(setupBrandHoverEvents);
}


///////////////////////////////////////////////////////////////////////////////
// FUNCTIONS
///////////////////////////////////////////////////////////////////////////////

function setupBrandHoverEvents()
{
  setupHoverEventsForNavID("cpTopNavList");
  setupHoverEventsForNavID("cpTopicsNavList");

}

///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////