$(function(){
	
	$('#respond-open a').click(function (event) {
		event.preventDefault();
		if ($('#respond-wrap').is(':visible')) {
			
		} else {
			$(this).parent().hide();
			$('#respond-wrap').show();
		}
	});
	
	$('#respond-close').click(function (event) {
		event.preventDefault();
		if ($('#respond-wrap').is(':visible')) {
			$('#respond-wrap').hide();
			$('#respond-open').show();
		}
	});
	
	console.log('here');
	$('.about-copy').Spanify();
	

	
});

























