$(document).ready(function(){

	//Accordion FAQs
	$(".question_wording > .answer").hide();

	$(".question_wording > .question").click(function() {
		$(this).next('.answer').slideToggle('fast')
		.siblings('.answer:visible').slideUp('fast');
	});

	//Toggle "More News" Modal
/*
	$('.morenews_modal').click(function (e) {
		e.preventDefault();
		$('.basic_modal_content').modal();
	});
*/
	
	//Toggle "More News" in Right Sidebar
	$(".news_list").hide();  

    $(".morenews").click(function (e) {
		e.preventDefault();
		$(".news_list").slideToggle("slow");
    });

	//Accordion More News
	$(".news_items > .news_item_content").hide();

	$(".news_items > h3.news_item_title").click(function() {
		$(this).next('.news_item_content').slideToggle('fast')
		.siblings('.news_item_content:visible').slideUp('fast');
	});

});
