/*
GENERAL VARIABLES
*/

var curtainLevel	=	120;
var popInfoLevel	=	130;

function activateCurt(autoClose)
{
	var code	=	'<div class="black_curt" id="black_curt"></div>';
	$('body').append(code);
	var doc_he	=	$(document).height();
	$(".black_curt").css('height', doc_he+'px');
	
	if(autoClose)	$('.black_curt').click(removeCurt);
	
}
function removeCurt()
{
	$('.black_curt').remove();
}
