$(document).ready(function(){
	$('.faqItem p').hide();
	$('.readmore').toggle(function(){
		var $this = $(this);
		$this.parents('.faqItem').children('p').slideDown('normal');
		$this.parent().css('font-weight', 'normal');
		$this.text('[-]');
	}, function(){
		var $this = $(this);
		$this.parents('.faqItem').children('p').slideUp('normal');
		$this.parent().css('font-weight', 'normal');
		$this.text('[+]');
	});
});
