//	Reveal Theme Chooser panel

$(document).ready(function()
{
	$('.ThemeSelector').hide();

	 $('.ThemeSelector').animate({ 
      opacity: 'show',
      height: 'show'
    }, 2500);
	
});




//	#DivMod_94	===================================================================

$(document).ready(function()
{
	// hide all the content panes when the page loads
	$('#ModHeading_96, #ListItems_97, #ModHeading_98, #ListItems_99').hide();
	// display the DOWN arrow when the page loads
	$('#DivMod_94').addClass("OpenDiv");
		
	$('#ModHeading_95').click(function() 		
	{
		$('#ModHeading_96, #ListItems_97, #ModHeading_98, #ListItems_99').animate( {'height':'toggle'}, 'slow', 'easeOutCirc');
		//$('#ModHeading_103, #ListItems_104, #ModHeading_105, #ListItems_106').hide();
		//$('#ModHeading_110, #ListItems_111, #ModHeading_112, #ListItems_113').hide();
  
		//	if class="OpenDiv" -> class="ClosedDiv" { ie: display the DOWN arrow on alternate clicks}
		$('#DivMod_94').toggleClass("CloseDiv");
		//	if class="ClosedDiv" -> class="OpenDiv" { ie: display the UP arrow on alternate clicks}
		$('#DivMod_94').toggleClass("OpenDiv");

	}); 
});


//	#DivMod_101	===================================================================

$(document).ready(function()
{
	// hide all the content panes when the page loads
	$('#ModHeading_103, #ListItems_104, #ModHeading_105, #ListItems_106').hide();
	// display the DOWN arrow when the page loads
	$('#DivMod_101').addClass("OpenDiv");
  
	$('#ModHeading_102').click(function() 
	{
		//$('#ModHeading_96, #ListItems_97, #ModHeading_98, #ListItems_99').hide();		
		$('#ModHeading_103, #ListItems_104, #ModHeading_105, #ListItems_106').animate( {'height':'toggle'}, 'slow', 'easeOutCirc');
		//$('#ModHeading_110, #ListItems_111, #ModHeading_112, #ListItems_113').hide();
  
		//	if class="OpenDiv" -> class="ClosedDiv" { ie: display the DOWN arrow on alternate clicks}
		$('#DivMod_101').toggleClass("CloseDiv");
		//	if class="ClosedDiv" -> class="OpenDiv" { ie: display the UP arrow on alternate clicks}
		$('#DivMod_101').toggleClass("OpenDiv"); 

		
	}); 
});


//	#DivMod_108	===================================================================

$(document).ready(function()
{
	// hide all the content panes when the page loads
	$('#ModHeading_110, #ListItems_111, #ModHeading_112, #ListItems_113').hide();
	// display the DOWN arrow when the page loads
	$('#DivMod_108').addClass("OpenDiv");
  
	$('#ModHeading_109').click(function() 
	{
		//$('#ModHeading_96, #ListItems_97, #ModHeading_98, #ListItems_99').hide();
		//$('#ModHeading_103, #ListItems_104, #ModHeading_105, #ListItems_106').hide();
 		$('#ModHeading_110, #ListItems_111, #ModHeading_112, #ListItems_113').animate( {'height':'toggle'}, 'slow', 'easeOutCirc');
 		
		//	if class="OpenDiv" -> class="ClosedDiv" { ie: display the DOWN arrow on alternate clicks}
		$('#DivMod_108').toggleClass("CloseDiv");
		//	if class="ClosedDiv" -> class="OpenDiv" { ie: display the UP arrow on alternate clicks}
		$('#DivMod_108').toggleClass("OpenDiv");
 
 
  }); 
});
