$(document).ready(function() {
	// BACKGROUND IMAGE
    $("div#supersize").supersize();
    
	// LIGHTBOX
	$("#call_lightbox").click(function(e){
		e.preventDefault();
		$(".screen").css("display","block");
		$(".screen").fadeTo("slow", 0.5);
		$("#lightbox").animate({top: "0"},600);
		$(".screen").click(function(){
			$("#lightbox").animate({top: "-700px"},600);
			$(this).fadeOut();
		});
		$(".close").click(function(){
			$("#lightbox").animate({top: "-700px"},600);
			$(".screen").fadeOut();
		});
	});
  
    
    
});
