$(document).ready(function(){
var popupStatus = 0;
$(".openpopup").click(function(){
	if(popupStatus==1){
//	$(".popup-container").fadeOut("slow");
//	$(this).parent().next().fadeIn("slow");	
	$(".popup-container").hide();
	$(this).parent().next().show();
	popupStatus = 1;
	}
	else if(popupStatus==0){
//	$(this).parent().next().fadeIn("slow");
	$(this).parent().next().show();
	popupStatus = 1;
	}
	});
$(".closepopup").click(function(){
//		$(".popup-container").fadeOut("slow");
		$(".popup-container").hide();
		popupStatus = 0;
	});
});