$(document).ready(function() {
	
	if ( $("#faq").length > 0 ) {
		$(".faq-a").hide();
		$("#faq_padding").hide();
		if ( location.hash ) {
			$( location.hash.replace('faq','faq-a') ).show()
		}
	}

	$("#faq a").click( function() {
	
		$(".faq-a").hide();
		$("#" + $(this).attr('id').replace('-q','-a')).show();
	
	});
   
});
