$(document).ready(function() {
	
	// Hide all but the links
	$("#sub_middle_content_copy > ul#faqList > li > ul > li > ul > li > a").siblings().hide();
	$("#sub_middle_content_copy > ul#faqList > li > ul > li > a").siblings().hide();
	$("#sub_middle_content_copy > ul#faqList > li > ul").hide();
	
	// Functions to reveal/hide siblings of the links when they are clicked
	$("#sub_middle_content_copy > ul#faqList li > a").click(function() {
		$(this).siblings().toggle(200);
		return true;
	});
	$("#sub_middle_content_copy > ul#faqList li > ul > li > a").click(function() {
		return true;
	});
	

});