$(document).ready(function() {
	$(".bodyFAQ").hide();
	$(".linkFAQ").click(function () {
		$(".bodyFAQ").hide();
		$(this).parent().find(".bodyFAQ").slideToggle('slow');
		return false;
	});
	if (window.document.location.hash) 
		$(window.document.location.hash).show();
});