// JavaScript Document
// Custom scripts that need to load from main page instead of through ajax or dynamically populated windows


$(document).ready(function() {

						   
						   
	// Toggle hidden content on a page					   
	$('.hidden_content').hide();
 	$('.subtitle').toggle(
		function() {
	   $(this).next('.hidden_content').fadeIn();
		 $(this).addClass('close');
		},
		function() {
		  $(this).next('.hidden_content').fadeOut();
			$(this).removeClass('close');
	  }
	); // End toggle
	

}); // End document ready


