  $(function(){
		
		var offset = $("#backcall").offset();
		$("#backcallform").css({ "left": offset.left - 92});
		$("#backcallform").css({ "top": offset.top - 45});
		
		
		$("#backcall").click(function(){
				
				$("#backcallform").css({ "opacity": "0"});
				$("#backcallform").css({ "display": "block"});
				$("#backcallform").animate({ "opacity": "1"}, 600);
				$('#tel').focus();

		});
		
		$("#closeform").click(function(){
				
				$("#backcallform").animate({ "opacity": "0"}, 400);
				$("#backcallform").css({ "display": "none"});

		});

		$("#okbutton").click(function(){
				
				 var val		=	$("#tel").val();
				 var urlpath	=	'send.php?tel='.val;
				
				 $.ajax({
   				 type: "POST",
   				 url: urlpath,
   				 success: function(msg){
     				 $(".teltext").html(data);
					}
 				 });

		});

  });
