$(function(){
	
	$('#lightbox #close').click(function(){
		$('#lightbox').hide();
	})
	
	$('#buttons a').click(function(){
		
		$(window).resize(function() {
			$('#lightbox form').css('marginTop', ($(window).height() - $('#lightbox form').outerHeight()) / 2);
		});
		
		$('#lightbox').show();
		
		$('#lightbox form').css('marginTop', ($(window).height() - $('#lightbox form').outerHeight()) / 2);
		
		$('#lightbox').height($(document).height());
		
		return false;
	});
})
