<!--
/* -----------------------------
   Begin - Expand/retract sections for events page NEED TO FIX TO BE UNIVERSAL
   ----------------------------- */
function expand(opener, section, closer, title)

{
opener.className='hidden';
section.className='visible';
section.style.borderBottom='solid 2px #993300';
section.style.marginBottom='30px';
closer.className='hotSpot';
closer.style.marginTop='-10px';
title.style.background='#fff';
title.style.borderBottom='none';
title.style.borderTop='solid 2px #993300';
}

function retract(closer, section, opener, title)
{
closer.className='hidden';
section.className='hidden';
opener.className='hotSpot';
title.style.background='#fcfcfc';
title.style.borderBottom='dotted 2px #993300';
title.style.borderTop='dotted 2px #993300';
}
/* -----------------------------
   End - Expand/retract sections
   ----------------------------- */

   
   /* -----------------------------
   Begin - Expand/retract sections for VOLUNTEER page NEED TO FIX TO BE UNIVERSAL
   ----------------------------- */
function expand_volunteer(opener, section, closer, title)

{
opener.className='hidden';
section.className='visible';
section.style.borderBottom='solid 1px #993300';
section.style.marginBottom='30px';
closer.className='hotSpot';
closer.style.marginTop='-10px';
title.style.background='#fff';
title.style.marginTop='10px';
title.style.borderTop='solid 1px #993300';
}

function retract_volunteer(closer, section, opener, title)
{
closer.className='hidden';
section.className='hidden';
opener.className='hotSpot';
title.style.background='#fcfcfc';
title.style.borderTop='none';
}
/* -----------------------------
   End - Expand/retract sections
   ----------------------------- */
   
   
 /* -----------------------------
   Begin - Expand/retract sections for faq page NEED TO FIX TO BE UNIVERSAL
   ----------------------------- */
function expand_faq(section, closer)

{
section.className='answerOpen';
closer.className='hotSpot';
}

function retract_faq(closer, section)
{
closer.className='hidden';
section.className='hidden';
}
/* -----------------------------
   End - Expand/retract sections
   ----------------------------- */  

//-->

