function comingSoon(showHide) {
	showHide == 'show' ? document.getElementById('comingSoon').style.display = "block" : document.getElementById('comingSoon').style.display = "none";
}
