$(document).ready(function () {
	
		$('.order-call').click(function (e) {
			e.preventDefault();
			$('body').append($('<div style="position: absolute; z-index: 98; display: none; background: #000; top: 0px;" id="process-overlay"></div>'));
			$('#process-overlay').css({
				'width': $(document).width(),
				'height': $(document).height(),
				'opacity': 0,
				'display': 'block'
			}).fadeTo(400, 0.7, function () {
				$('#order-call-form').css({
					'top': Math.round($(document).scrollTop() + (($(window).height() - $('#order-call-form').height())/2)),
					'left': Math.round(($(window).width() - $('#order-call-form').width())/2)
				}).appendTo('body').fadeIn(200);
			});
		});
		
		$('.button-close').click(function (e) {
			e.preventDefault();
			$('#order-call-form').fadeOut(200, function () {
				$('#process-overlay').fadeOut(function() {
					$('#order-call-form').appendTo('body');
					$(this).remove();
				});
			});
		});
});
