$(document).ready(function(){

$("#button").bind("click",function(e){
	$("#test").fadeOut();
	e.preventDefault();
});


var width = $(document).width();
var height = $(document).height();

$(window).resize(function(){
	var width = $(document).width();
	var height = $(document).height();
});

$("#overlay").width(width);
$("#overlay").width(height);
var x = width/2 - $("#box").width() / 2;
var y = 200;
$("#box").css("top",x+"px");
$("#box").css("left",y+"px");

});
