/*
################################################################################
#
# File:     shared/js/music-fancy.js
#
# Contents: Javascript used by anchovies, ipecac, trex, tripecac, etc.
#
# Modifications:
#   - 2010-08-09  txe  Initial creation.
#   - 2011-06-02  txe  Added addCssToggle().
#   - 2011-07-18  txe  Updated local logic.
#
################################################################################
*/

// always run //

function handleLoad()
{


// 2011-07-18 txe start //
//  handleDirectoryLinks();
  handleLocalLinks();
// 2011-07-18 txe end //


  handleLocalMp3Links();
  addCssToggle();
}

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

function handleLocalMp3Links()
{
//alert("cookie('localMp3Root') = '" + cookie("localMp3Root") + "'");    
  document.body.className += (cookie("localMp3Root") ? " isLocalMp3RootSet" : "");
//alert("document.body.className = '" + document.body.className + "'");
}


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