$(document).ready(function() {									
	$("a[name^='faq-']").each(function() {
		$(this).click(function() {
			if( $("#" + this.name).is(':hidden') ) {
				$("#" + this.name).fadeIn('fast');
			} else {
				$("#" + this.name).fadeOut('fast');
			}			
			return false;
		});
	});
});