﻿$(document).ready(function(){
	loadPopupWhy();
	$("#birthOk").click(function(){disablePopupWhy();});
});

//Megjelenítés/Elrejtés függvénye
function loadPopupWhy(){
	$(".popUpBackground").css({"opacity": "0.7"});
	$(".popUpBackground").fadeIn("slow");
	$("#birthWhyPopUp").fadeIn("slow");
}
function disablePopupWhy(){
	$(".popUpBackground").fadeOut("slow");
	$("#birthWhyPopUp").fadeOut("slow");
}
