$(document).ready(function() {
	$('#pages-content-area-faq h3').each(function() {
		$(this).click(function() {
			elParagraph = $(this).next('p');
			if (elParagraph.css('display') == 'none') {
				elParagraph.show('slow');
			} else {
				elParagraph.hide('slow');
			}
		});
	});
});

/* Contact Form Popup */

$(document).ready(function() {
	$('.contact-form-toggle').fancybox({
		type: 'inline',
		autoDimensions: false,
		width: '600',
		height: '480'
	});
	
	if (typeof bContactFormErrors != 'undefined') {
		$('.contact-form-toggle').trigger('click');
	}
});
