$(document).ready(function() {
			
		// Add a selected attr to the faq h3
		$(".ltc_faq").children("h3").attr("selected", "false");
			
		// Hide the faq answers	
		$(".ltc_faq").children("h3").next().hide();					   
						   
				
		/*
		--------------------------------------------------------------
		Mouse Event Functions
		--------------------------------------------------------------
		*/

		// Arrow click event
		$(".ltc_faq").children("h3").click(function() {
		
			if ($(this).attr("selected") == "false") {
			
				// Set the attr
				$(this).attr("selected", "true");
				
				// Show the answer
				$(this).next().slideDown(100);
			} else {
				
				// Set the attr
				$(this).attr("selected", "false");
				
				// Hide the answer
				$(this).next().slideUp(100);

			}
		});
				
		/*
		--------------------------------------------------------------
		Mouse Event Functions
		--------------------------------------------------------------
		*/
		
});
