jQuery(document).ready(function() {
	jQuery("#open-contact").click(function(){
		if (jQuery(".wpcf7").hasClass("open")) {
			return false;
		}
		jQuery(".wpcf7").css('display', 'block').addClass('open');
		return false;
	});
});