//The magic is all in the CSS

	//model fade in
	$('#hire-me').click(function() {
      $('#blackout:hidden:first, #model:hidden:first').fadeIn('700');
    });

	//model fade out
	$("#close").click(function () {
	$("#blackout, #model").fadeOut("700");
	});

