$(document).ready(function(){
	
	// For the grants history page
	var grants = $('.history_entry ul');
	grants.hide();
	$('.history_entry p a.toggler').click(function() {
		//console.log("toggle");
		//console.log($(this).parent());
		$(this).parent().next().slideToggle();
	});
	
	// For the learn/faq.php page
	$('#faqs .answer').hide();
	$('#faqs h3').click(function(e) {
		$(this).next().slideToggle();
	});
	
	// future fund
	$('.answer').hide();
	$('.question').click(function(e){
		$(this).next().slideToggle();
	});
	
	// // For the Receive/Scholarship Overview page
	// $('#scholarships_overview .scholarship .info').hide();
	// $('#scholarships_overview .scholarship h4').click(function(e){
	// 	var parent = $(this).parent();
	// 	if(parent.hasClass("orange_bg")) {
	// 		$(this).next().slideToggle("slow", toggleBG);
	// 	} else {
	// 		parent.addClass("orange_bg");
	// 	}
	// });
	// // Change the bg at the end of the slide
	// function toggleBG (event) {
	// 	var parent = $(this).parent();
	// 	console.log(parent);
	// 	//parent.hasClass("orange_bg") ? parent.removeClass("orange_bg") : parent.addClass("orange_bg");		
	// };

});