jQuery(document).ready
(
	function()
	{
	 // Оформление форм
	 //
  jQuery('input[type="file"]').filestyle();

  jQuery('form').jqTransform({imgPath:'../js/jqtransformplugin/images/'});


  // проверка возраста посетителей
  //
  if (!jQuery.cookie('age18plus'))
  {
   jQuery("#checkAge").show('slow');
  }
 	jQuery(".age18plus").click
 	(
 	 function()
 	 {
 	  jQuery("#checkAge").hide();
 	  jQuery.cookie('age18plus',1,{ path: '/', expires: 256,});
 	  return false;
 	 }
 	);

 	// Сокрытие телефона
 	//
 	jQuery('.show_phone').click
 	(
 	 function()
 	 {
 	  jQuery(this).hide();
 	  jQuery(this).next().show();

    // счётчик
    jQuery.ajax
    ({
     type: "POST",
     url: "/phone-click",
     data: "anket_id="+jQuery(this).attr('anket_id'),
    });
    
 	  return false;
 	 }
 	);

	}
);
