/**
 * @file
 * Custom javascript utilities.
 * 
 * @author Shannon M. Rause <shannon.rause@creativeflavor.com>
 * @version $Revision: 1.2 $
 * @version $Name: FAIRVIEWFRIENDSFOUNDATION_2010-12-06_1 $
 * @version $Id: main.js,v 1.2 2010/08/21 02:07:58 smr Exp $
 *
 * These files are copyrighted to Creative Flavor Inc. and are
 * subject to the terms of the applicable Service Agreement.
 * If no service agreement is available you must contact us at
 * legal@creativeflavor.com or 303-379-9450.
 * 
 * These files may be watermarked to ensure traceability.
 */

function hide_full_bio(num)
{
   document.getElementById('bioSummary' + num).style.display = 'block';
   document.getElementById('bioBio' + num).style.display = 'none';
} // hide_full_bio


function show_full_bio(num)
{
   var elems = document.getElementsByTagName('div');

   for (var i=0; i<elems.length; i++)
   {
      if (elems[i].className == 'bioSummary')
      {
         if (elems[i].id == 'bioSummary' + num)
         {
            // hide this summary.
            elems[i].style.display = 'none';
         } // if
         else
         {
            // show all other summaries.
            elems[i].style.display = 'block';
         } // else
      } // if
      else if (elems[i].className == 'bioBio')
      {
         if (elems[i].id == 'bioBio' + num)
         {
            // show this full bio.
            elems[i].style.display = 'block';
         } // if
         else
         {
            // hide all other full bios.
            elems[i].style.display = 'none';
         } // else
      } // else if
   } // for
} // show_full_bio

