$(document).ready(function() {
	// if the error message is showing on the newsletter signup,
	// remove it after 3 seconds
	if($('.wpcf7-validation-errors').length > 0) {
		setTimeout(function() {
			$('.wpcf7-validation-errors').fadeOut();
		}, 3000);
	}
	if($('.wpcf7-mail-sent-ng').length > 0) {
		setTimeout(function() {
			$('.wpcf7-mail-sent-ng').fadeOut();
		}, 3000);
	}
	// if the success message is showing on the newsletter signup,
	// remove it after 3 seconds
	if($('.wpcf7-mail-sent-ok').length > 0) {
		setTimeout(function() {
			$('.wpcf7-mail-sent-ok').fadeOut();
		}, 3000);
	}
});
