	$(document).ready(function() {
			
			$("#call").fancybox({
				'titleShow'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic'
			});
			 $("#comment").fancybox({
				'titleShow'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic'
			});
            
            $("#comment2").fancybox({
				'titleShow'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic'
			});
		
		});	
function orderCall()
  {
	  var TelefonCall = $("#doxcall #telefon_call").get(0).value;
	  var NameCall = $("#doxcall #name_call").get(0).value;
	  var CityCall = $("#doxcall #city_call").get(0).value;
      
	  $("#doxcall #DivInfo").html("<div align='center'><img src='/fancybox/loading.gif' width='20' height='20' /></div>");
	  
			$(function (){
				$("#doxcall #DivInfo").load("/callcoment.php", {call : "", tel : TelefonCall, name : NameCall, city : CityCall}, function(result, status, xhr){
					if (status == "error") {
						alert("No load");
						}
					else
						{
							$("#doxcall #telefon_call").get(0).value="";
							$("#doxcall #name_call").get(0).value="";
                            $("#doxcall #city_call").get(0).value="";
							$("#doxcall #DivInfo").html(result);
						}
				});
				
			});
  }
  
  
  
  function orderComment()
  {
	  
	  var NameComment = $("#boxcomment #name_comment").get(0).value;
	  var MailComment = $("#boxcomment #mail_comment").get(0).value;
	  var TextComment = $("#boxcomment #text_comment").get(0).value;
	  $("#fancybox-wrap").css('height','240px');
      $("#fancybox-inner").css('height','240px');
	  $("#boxcomment #DivInfo").html("<div align='center'><img src='/fancybox/loading.gif' width='20' height='20' /></div>");
	  
			$(function (){
				$("#boxcomment #DivInfo").load("/callcoment.php", {comment : "", name : NameComment, mail : MailComment , text :  TextComment}, function(result, status, xhr){
					if (status == "error") {
						alert("No load");
						}
					else
						{
							$("#boxcomment #name_comment").get(0).value="";
							$("#boxcomment #mail_comment").get(0).value="";
							$("#boxcomment #text_comment").get(0).value="";
							$("#boxcomment #DivInfo").html(result);
						}
				});
				
			});
  }


