$(document).ready(function () {
	$(document).ready(function () {
		$('.contactFormtxt').find('.toggle_container').hide().end().find('.trigger').click(function() {
			$(this).next().slideToggle();
			$(this).toggleClass('open');
		});
	});
});
