$(document).ready(function() {
	$(".popup_overlay").click(function() {
		$(this).hide();
		$(".obis_popup").hide();
	});
});

function ob_popup(num)
{
	$(".popup_overlay").show();
	
	$(".obis_popup").hide();
	$(".show_on_click_" + num).show();
	
}

function ob_popup_close()
{
	$(".obis_popup").hide();
	$(".popup_overlay").hide();
}
