	$(document).ready(function() {
		$("#call_lightbox").click(function(e){
            	e.preventDefault();
			$(".screen").css("display","block");
			$(".screen").fadeTo("slow", 0.5);
			$("#lightbox").animate({top: "0px"},800);
			$(".screen").click(function(){
				$("#lightbox").animate({top: "-700px"},800);
				$(this).fadeOut();
			});
		});
	});

