//Ancient history content display////////////////////////////////////////////////////////////////////////////////////////////////
function show_ancient_history_article_content(article_title) 
	{
		
		$(".ancient_history_article_content").slideUp("slow");
		article_content="#"+article_title.replace('title','content');
		$(article_content).slideDown("slow");
	}
function hide_ancient_history_article_content(article_content) 
	{
		$(article_content).slideUp("slow");
	}
//Freedom history content display////////////////////////////////////////////////////////////////////////////////////////////////
function show_freedom_history_article_content(article_title) 
	{
		
		$(".freedom_history_article_content").slideUp("slow");
		article_content="#"+article_title.replace("title","content");
		$(article_content).slideDown("slow");
	}
function hide_freedom_history_article_content(article_content) 
	{
		$(article_content).slideUp("slow");
	}
//Donor information detail display///////////////////////////////////////////////////////////////////////////////////////////////
function donor_info_detail_display_on(show_detail) 
	{
		$(show_detail).hide("slow");
		$(show_detail).slideDown("slow");
	}
function donor_info_detail_display_off(hide_detail) 
	{
		$(hide_detail).hide("slow");
	}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
