//Store the number ("one", "two", etc.) of the DIV/LI that starts off ACTIVE when the page first loads
var sCurrentlyVisibleDiv = "one";
function showFeatured(sNumber) {
  //If we clicked on the same number ("one", "two", etc.) that is already ACTIVE, then do nothing (return true and we're done)
  if (sCurrentlyVisibleDiv == sNumber) { return true; }

  //Hide the DIV that WAS active
  $(sCurrentlyVisibleDiv + "Content").hide();

  //Remove the "featured_active" class from the LI that WAS active
  $(sCurrentlyVisibleDiv + "LI").removeClassName('active_box');

  //Make the DIV that is now active fade into view
  Effect.Appear(sNumber + "Content", { duration: .5 });
//  Effect.SlideDown(sNumber + "Content", { duration: .5, scaleFromCenter: true });

  //Apply the "feature_active" class to the now active LI
  $(sNumber + "LI").addClassName('active_box');

  //Store the number ("one", "two", etc.) of the DIV/LI that is now active for next use
  sCurrentlyVisibleDiv = sNumber;
}