jQuery(document).ready(function() {
	resize();
	jQuery(window).resize(function(){resize();});
	jQuery(".resume-submit-btn").click(function(){jQuery("#bg-box").show();});
	jQuery("#bg-box a#close-btn").click(function(){jQuery("#bg-box").hide();});
});
function resize(){
	var w = jQuery(window).width();
	var h = jQuery(window).height();
	jQuery("#bg-box").css('width', w);
	jQuery("#bg-box").css('height', h);
	jQuery('#bg-box #resume-upload-box').css('left', (w/2 - 416));
	jQuery('#bg-box #resume-upload-box').css('top', 30);
}
