// JavaScript Document
$(document).ready(function() {									
	$("a[name^='faq-']").each(function() {
		$(this).click(function() {
			$(".faq-answer").css("display","none");		
			$("#" + this.name).css("display","block");			
			/*if( $("#" + this.name).is(':hidden') ) {
				//$("#" + this.name).fadeIn('slow');
				$("#" + this.name).css("display","block");
				alert("#" + this.name);
			} else {
				$("#" + this.name).fadeOut('slow');
			}*/			
			return false;
		});
	});
});

